twoHelixestwoHelixes Start free

Datasets / scikit-learn / UCI

Iris

Fisher's iris measurements. 150 rows, 3 species.

150 rows5 columns scikit-learn / UCI

Worked examples

Each of these is a real run: the pipeline picked the columns, shaped the rows and chose the form. Open the trace to see what it decided and why.

Petal length against petal width, by species

The classic result: two of the three species separate cleanly on petals alone, and the pair that overlaps is the pair that always overlaps.

Petal length against width, by species00.512226.05.64.55.36.74.95.44.03.93.64.33.01.51.11.9Petal Length Cmvirginicaversicolorsetosa
how do petal length and width separate the species? — 150 rows charted from 150, drawn as a scatter
How it decided
Finding the data145 ms

Iris: 150 rows, 5 columns. the two petal measurements and the species label.

Shaping the data6 ms

150 rows in, 150 out across 3 columns. The classic result: two of the three species separate cleanly on petals alone, and the pair that overlaps is the pair that always overlaps.

Choosing the chart14 ms

scatter. Two measures, a categorical split, no time: a scatter.

Applying defaults1 ms

Palette, spacing, axis titles and legend placement applied. 0 issues found.

Mean sepal length by species

Three groups, one measurement: the comparison the question asks for is a ranking, so it is drawn as one.

Mean sepal length by species0246setosaversicolorvirginicaSpecies
compare sepal length across species — 3 rows charted from 150, drawn as a bar
How it decided
Finding the data92 ms

Iris: 150 rows, 5 columns. species and sepal_length_cm.

Shaping the data5 ms

150 rows in, 3 out across 2 columns. Three groups, one measurement: the comparison the question asks for is a ranking, so it is drawn as one.

Choosing the chart9 ms

bar. A measure across three named groups: bars.

Applying defaults1 ms

Palette, spacing, axis titles and legend placement applied. 0 issues found.

Schema

5 columns, typed as the pipeline sees them — which is how it knows what can go on a time axis and what can be summed.

Column TypeExample
sepal_length_cmnumber5.1
sepal_width_cmnumber3.5
petal_length_cmnumber1.4
petal_width_cmnumber0.2
speciestextsetosa

First 8 rows

sepal_length_cmsepal_width_cmpetal_length_cmpetal_width_cmspecies
5.13.51.40.2setosa
4.93.01.40.2setosa
4.73.21.30.2setosa
4.63.11.50.2setosa
5.03.61.40.2setosa
5.43.91.70.4setosa
4.63.41.40.3setosa
5.03.41.50.2setosa