https://github.com/barisguven/datasets
Two tidymodels datasets for scikit-learn
https://github.com/barisguven/datasets
sklearn tidymodels
Last synced: 25 days ago
JSON representation
Two tidymodels datasets for scikit-learn
- Host: GitHub
- URL: https://github.com/barisguven/datasets
- Owner: barisguven
- Created: 2025-03-19T17:47:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-19T18:13:21.000Z (about 1 year ago)
- Last Synced: 2025-10-26T18:02:14.417Z (8 months ago)
- Topics: sklearn, tidymodels
- Language: R
- Homepage:
- Size: 226 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tidymodels Datasets for Scikit-learn
This repository contains the CSV versions of the `ames` and `stackoverflow` datasets from the **modeldata** package in **tidymodels**, an R meta-package for machine learning and statistical analysis. Both datasets could be used as additional example datasets for the Python package **scikit-learn**.
You can use the following Python code to create a pandas DataFrame for the `ames` dataset:
```python
import pandas as pd
ames = pd.read_csv("https://raw.githubusercontent.com/barisguven/datasets/main/data/ames_tm.csv")
```