An open API service indexing awesome lists of open source software.

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

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")
```