imported seaborn as sb but called it as sns
SeaBorn is a library for advanced data visualization
import seaborn as sb
Here, we run some basic setup for some visualization work in SeaBorn and MatPlotLib.
Don't worry about what this all means now: simply plug this into your next cell for some data visualization setup.
sns.set(style="white", context="notebook", palette="deep")
COLOR_COLUMNS = ["#66C2FF", "#5CD6D6", "#00CC99", "#85E085", "#FFD966", "#FFB366", "#FFB3B3", "#DAB3FF", "#C2C2D6"]
sns.set_palette(palette=COLOR_COLUMNS, n_colors=4)
imported seaborn as sb but called it as sns
SeaBorn is a library for advanced data visualization
import seaborn as sb
Here, we run some basic setup for some visualization work in SeaBorn and MatPlotLib.
Don't worry about what this all means now: simply plug this into your next cell for some data visualization setup.
sns.set(style="white", context="notebook", palette="deep")
COLOR_COLUMNS = ["#66C2FF", "#5CD6D6", "#00CC99", "#85E085", "#FFD966", "#FFB366", "#FFB3B3", "#DAB3FF", "#C2C2D6"]
sns.set_palette(palette=COLOR_COLUMNS, n_colors=4)