Python Forum

Full Version: Reset seaborn
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there,

Following some tipps I somehow changed some global settings in seaborn and I would like to reset everything concerning seaborn and matplotlib.
It seems I shifted the y-axis somehow.

import pandas as pd
import numpy as np
from random import * # random numbers

import matplotlib.pyplot as plt
import seaborn as sns

import importlib
importlib.reload(mpl); importlib.reload(plt); importlib.reload(sns)

df = pd.DataFrame(np.random.randint(0,100,size=(10, 2)), columns=list('AB'))
print(df)


a4_dims = (11.7, 8.27)
fig, ax = plt.subplots(figsize=a4_dims)
seaborn.violinplot(y=df["A"], data=df)
fig = ax.get_figure()
fig.savefig('minimal_violinplot.png', dpi=300)
I have tried out something like:

import matplotlib as mpl
import matplotlib.pyplot as plt
import seaborn as sns

import importlib
importlib.reload(mpl); importlib.reload(plt); importlib.reload(sns)
in the preamble, which does not work. Neither:

sns.reset_orig()
Any ideas? I would be vrey grateful! Smile
(May-26-2021, 01:55 AM)Larz60+ Wrote: [ -> ]

Thank you and sorry for the late reply. It actually did not solve the problem with my violinplot. I am not sure where the error lies. I found a provisionary work-around, maybe I just need to reinstall.