You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
612 B
Markdown
26 lines
612 B
Markdown
# Iris Dataset CSV Generator
|
|
|
|
This repository contains a simple Python script to load the Iris dataset, assign basic column names from the beginning, and export the data to a CSV file.
|
|
|
|
## Objective
|
|
|
|
The main purpose of this repository is to generate a clean CSV version of the Iris dataset with short and simple column names:
|
|
|
|
- `sl` : sepal length
|
|
- `sw` : sepal width
|
|
- `pl` : petal length
|
|
- `pw` : petal width
|
|
- `target` : numeric class label
|
|
- `tNames` : class name
|
|
|
|
## Requirements
|
|
|
|
This project uses Python and the following libraries:
|
|
|
|
- `pandas`
|
|
|
|
You can install them with:
|
|
|
|
```bash
|
|
pip install pandas
|