> For the complete documentation index, see [llms.txt](https://developer-mina.gitbook.io/setify/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer-mina.gitbook.io/setify/datasets/plant.md).

# Plant

### `iris()`

The Iris dataset was used in R.A. Fisher's classic 1936 paper,  it is found on the [UCI Machine Learning Repository](http://archive.ics.uci.edu/ml/).

It includes three iris species with 50 samples each as well as some properties about each flower. One flower species is linearly separable from the other two, but the other two are not linearly separable from each other.

{% tabs %}
{% tab title="Data" %}

```
    PetalLengthCm PetalWidthCm SepalLengthCm SepalWidthCm         Species
0             1.4          0.2           5.1          3.5     Iris-setosa
1             1.4          0.2           4.9            3     Iris-setosa
2             1.3          0.2           4.7          3.2     Iris-setosa
3             1.5          0.2           4.6          3.1     Iris-setosa
4             1.4          0.2             5          3.6     Iris-setosa
...           ...          ...           ...          ...             ...
145           5.2          2.3           6.7            3  Iris-virginica
146             5          1.9           6.3          2.5  Iris-virginica
147           5.2            2           6.5            3  Iris-virginica
148           5.4          2.3           6.2          3.4  Iris-virginica
149           5.1          1.8           5.9            3  Iris-virginica
```

{% endtab %}

{% tab title="Information" %}

```
[150 rows x 5 columns]
<class 'pandas.core.frame.DataFrame'>
Int64Index: 150 entries, 0 to 149
Data columns (total 5 columns):
 #   Column         Non-Null Count  Dtype  
---  ------         --------------  -----  
 0   PetalLengthCm  150 non-null    float64
 1   PetalWidthCm   150 non-null    float64
 2   SepalLengthCm  150 non-null    float64
 3   SepalWidthCm   150 non-null    float64
 4   Species        150 non-null    object 
dtypes: float64(4), object(1)
memory usage: 7.0+ KB
```

{% endtab %}
{% endtabs %}
