- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑以下情节:
import matplotlib.pyplot as plt
import seaborn as sns
Data = sns.load_dataset("tips")
g = sns.lmplot(x="total_bill", y="tip", hue="smoker", data = Data, legend_out = False, aspect = 2)
g.set(xlabel = "independent", ylabel = "dependent")
sns.despine(fig=None, ax=None, top=False, right=False, left=False, bottom=False, offset=None, trim=False)
plt.show()
sns.set(rc={'figure.figsize':(10,5)}, font_scale=1.5)
sns.set_style({'axes.facecolor':'white', 'grid.color': '.8', 'font.family':'Times New Roman'})
最佳答案
也许您想忽略seaborn的样式,而只是直接设置所需的参数?
import matplotlib.pyplot as plt
import seaborn as sns
rc = {'figure.figsize':(10,5),
'axes.facecolor':'white',
'axes.grid' : True,
'grid.color': '.8',
'font.family':'Times New Roman',
'font.size' : 15}
plt.rcParams.update(rc)
Data = sns.load_dataset("tips")
g = sns.lmplot(x="total_bill", y="tip", hue="smoker", data = Data, legend_out = False, aspect = 2)
g.set(xlabel = "independent", ylabel = "dependent")
sns.despine(fig=None, ax=None, top=False, right=False, left=False, bottom=False, offset=None, trim=False)
plt.show()
关于python - Seaborn设置样式删除了despine配置的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55026154/
我想动态计算 seaborn.despine() 的轴偏移。它应该坚持我的 matplotlib 轴的 0 值。但不知何故,我似乎有错误的计算概念。 因为我需要以点为单位设置 seaborn 的偏移量
这是一个代码片段 tips = sns.load_dataset("tips") g = sns.FacetGrid(tips, col = 'time') g = g.map(plt.hist, "
我正在尝试绘制一系列仅在左侧图上具有可见 y 轴的盒须子图。我正在遍历 pandas 数据帧来执行此操作。但是,我用来删除坐标轴的 despine 函数在使用时似乎适用于所有绘图。在这种情况下,最终的
有很多关于创建具有两个或多个 y 轴的绘图的示例,但将单个 y 轴移动到绘图的右侧似乎有点棘手。 import numpy as np from matplotlib import pyplot as
如何防止 seaborn.despine 将我的两个 y 尺度都放在绘图的左侧?到目前为止我想到的最好的是: import matplotlib.pyplot as plt import seabor
seaborn是一个漂亮的 Python 包,在大多数情况下,它充当 matplotlib 之上的附加层。 .但是,例如,它会更改 matplotlib 的内容。绘图对象上的方法来引导 seaborn
Jupyter 笔记本,使用 Python 3: import matplotlib.pyplot as plt import seaborn as sns %matplotlib inline sn
我是一名优秀的程序员,十分优秀!