Skip to content Skip to sidebar Skip to footer

Why Do I Get Http400 Error When I Am Plotting Graphs In Python?

I am working on a dataset to visualize basic plots in python. I use seaborn and matplotlib. Up until yesterday, the packages worked perfectly fine until this error showed up: star

Solution 1:

sns.load_dataset requires a string as argument which evaluates to one of the available datasets at https://github.com/mwaskom/seaborn-data.

E.g. sns.load_dataset("tips") would load the tips.csv file.

Also see Seaborn load_dataset

Supplying some other data or a string which does not have its corresponding file will of course not work.

Post a Comment for "Why Do I Get Http400 Error When I Am Plotting Graphs In Python?"