Home > Back-end >  Plotting graphs with Altair from a Pandas Dataframe
Plotting graphs with Altair from a Pandas Dataframe

Time:11-24

I am trying to read table values from a spreadsheet and plot different charts using Altair. The spreadsheet can be found enter image description here

For the max rows issue, you can use the following

alt.data_transformers.disable_max_rows()

But be mindful of the official warning

If you choose this route, please be careful: if you are making multiple plots with the dataset in a particular notebook, the notebook will grow very large and performance may suffer.

  • Related