- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 colab
笔记本中运行 relplot
函数时遇到问题,但在 jupyter 笔记本中运行良好。
在colab中出现以下错误
AttributeError Traceback (most recent call last) in () ----> 1 sns.relplot(x="total_bill", y="tip", 2 col="time", # Categorical variables that will determine the faceting of the grid. 3 hue="smoker", # Grouping variable that will produce elements with different colors. 4 style="smoker", # Grouping variable that will produce elements with different styles. 5 size="size", # Grouping variable that will produce elements with different sizes.
AttributeError: module 'seaborn' has no attribute 'relplot'
最佳答案
您收到此错误是因为这是仅在最新版本的 Seaborn (0.9) 中可用的绘图,如文档 here 所示。 。尝试通过 pip3 install seaborn==0.9.0
进行升级。如果这不起作用,Colab 可能未与此版本集成。
关于python - 模块 'seaborn' 没有属性 'relplot',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53910548/
我想改变散点的大小。 这些都不起作用: sns.relplot(x='columnx', y='columny', hue='cluster', data=df) sns.relplot(x='col
对于python relplot,如何控制图例的位置并添加绘图标题?我尝试了 plt.title('title') 但它不起作用。 import seaborn as sns dots = sns.l
我在 colab 笔记本中运行 relplot 函数时遇到问题,但在 jupyter 笔记本中运行良好。 在colab中出现以下错误 AttributeError Traceback (most re
我在 colab 笔记本中运行 relplot 函数时遇到问题,但在 jupyter 笔记本中运行良好。 在colab中出现以下错误 AttributeError Traceback (most re
我一直在寻找增加 relplot 中图例/色调大小的方法。 plt.rcParams["axes.labelsize"] = 20 g = sns.relplot(x='Time(days)', y=
我想使用 sns.relplot 在单个图中绘制数据框的两个数据列。数据框如下所示: index x-axis col1 col2 group group2 0 0 27
这个问题在这里已经有了答案: seaborn is not plotting within defined subplots (1 个回答) 关闭 1 年前。 seaborn 文档区分了图形级和轴级
用于创建绘图的 Python 代码如下。这会根据 "variable" 创建子图: s=sb.relplot(x="timestamp",y="value",hue="variable",row="v
我无法让seaborn的relplot函数在每行上使用不同的y轴进行绘图(同时每列共享x轴)。 我可以看到seaborn中的FacetGrid和catplot方法都有一个sharex/sharey关键
色调参数跳过一个整数。 d = {'column1':[1,2,3,4,5], 'column2':[2,4,5,2,3], 'cluster':[0,1,2,3,4]} df = pd.DataFr
我目前有一个 seaborn relplot harker = sns.relplot(data = majorsLong, x = "SiO2", y = "Wt %", palette = col
我将相同物质的光谱数据加载到 pandas DataFrame 中,看起来像这样(有 20 个实验,波数达到 2300): experiment 0 1 2
我是一名优秀的程序员,十分优秀!