In the section "EXTRA: Selections by integer position", in the first example, the code data.iloc[0:5:,0:2] does not select TEMP and TEMP_CELSIUS.
I think the code should be one of the of the following:
selection.iloc[0:5,0:2]
data.iloc[0:5,[1, 5]]
Cheers,
Astrid :)
In the section "EXTRA: Selections by integer position", in the first example, the code data.iloc[0:5:,0:2] does not select TEMP and TEMP_CELSIUS.
I think the code should be one of the of the following:
selection.iloc[0:5,0:2]
data.iloc[0:5,[1, 5]]
Cheers,
Astrid :)