- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
为了使 seaborn.pairplot()
正常工作,在 jupyter notebook 中执行了以下步骤。 /usr/local/lib/python2.7/site-packages/matplotlib/matplotlib/transforms.pyc
中的错误停止了该函数的工作。
以下是 python 库版本:
print(matplotlib.__version__, sns.__version__)
('1.5.1', '0.7.1')
读取了 iris 数据集的 csv
data = pandas.read_csv('iris.csv')
data_no_nans = data.dropna()
sns.pairplot(data_no_nans)
错误信息:
ValueError Traceback (most recent call last)
<ipython-input-4-001343d0343b> in <module>()
----> 1 sns.pairplot(data)
/usr/local/lib/python2.7/site-packages/seaborn/linearmodels.pyc in pairplot(data, hue, hue_order, palette, vars, x_vars, y_vars, kind, diag_kind, markers, size, aspect, dropna, plot_kws, diag_kws, grid_kws)
1588 hue_order=hue_order, palette=palette,
1589 diag_sharey=diag_sharey,
-> 1590 size=size, aspect=aspect, dropna=dropna, **grid_kws)
1591
1592 # Add the markers here as PairGrid has figured out how many levels of the
/usr/local/lib/python2.7/site-packages/seaborn/axisgrid.pyc in __init__(self, data, hue, hue_order, palette, hue_kws, vars, x_vars, y_vars, diag_sharey, size, aspect, despine, dropna)
1253 if despine:
1254 utils.despine(fig=fig)
-> 1255 fig.tight_layout()
1256
1257 def map(self, func, **kwargs):
/usr/local/lib/python2.7/site-packages/matplotlib/figure.pyc in tight_layout(self, renderer, pad, h_pad, w_pad, rect)
1752 renderer,
1753 pad=pad, h_pad=h_pad, w_pad=w_pad,
-> 1754 rect=rect)
1755
1756 self.subplots_adjust(**kwargs)
/usr/local/lib/python2.7/site-packages/matplotlib/tight_layout.pyc in get_tight_layout_figure(fig, axes_list, subplotspec_list, renderer, pad, h_pad, w_pad, rect)
347 subplot_list=subplot_list,
348 ax_bbox_list=ax_bbox_list,
--> 349 pad=pad, h_pad=h_pad, w_pad=w_pad)
350
351 if rect is not None:
/usr/local/lib/python2.7/site-packages/matplotlib/tight_layout.pyc in auto_adjust_subplotpars(fig, renderer, nrows_ncols, num1num2_list, subplot_list, ax_bbox_list, pad, h_pad, w_pad, rect)
126 tight_bbox_raw = union([ax.get_tightbbox(renderer) for ax in subplots])
127 tight_bbox = TransformedBbox(tight_bbox_raw,
--> 128 fig.transFigure.inverted())
129
130 row1, col1 = divmod(num1, cols)
/usr/local/lib/python2.7/site-packages/matplotlib/matplotlib/transforms.pyc in __init__(self, bbox, transform, **kwargs)
1080 msg = ("'transform' must be an instance of"
1081 " 'matplotlib.transform.Transform'")
-> 1082 raise ValueError(msg)
1083 if transform.input_dims != 2 or transform.output_dims != 2:
1084 msg = "The input and output dimensions of 'transform' must be 2"
ValueError: 'transform' must be an instance of 'matplotlib.transform.Transform'
Regplot 完美运行
sns.regplot(x="petal_length", y="petal_width", data=data)
编辑
我怀疑这与 matplotlib 的字体管理器出现故障有关。我从 ~/.cache/中删除了 fontconfig 和 spicy 目录,并收到一条新的错误消息:AttributeError: 'module' object has no attribute 'Locked'
AttributeError Traceback (most recent call last)
<ipython-input-3-001343d0343b> in <module>()
----> 1 sns.pairplot(data)
/usr/local/lib/python2.7/site-packages/seaborn/linearmodels.pyc in pairplot(data, hue, hue_order, palette, vars, x_vars, y_vars, kind, diag_kind, markers, size, aspect, dropna, plot_kws, diag_kws, grid_kws)
1588 hue_order=hue_order, palette=palette,
1589 diag_sharey=diag_sharey,
-> 1590 size=size, aspect=aspect, dropna=dropna, **grid_kws)
1591
1592 # Add the markers here as PairGrid has figured out how many levels of the
/usr/local/lib/python2.7/site-packages/seaborn/axisgrid.pyc in __init__(self, data, hue, hue_order, palette, hue_kws, vars, x_vars, y_vars, diag_sharey, size, aspect, despine, dropna)
1253 if despine:
1254 utils.despine(fig=fig)
-> 1255 fig.tight_layout()
1256
1257 def map(self, func, **kwargs):
/usr/local/lib/python2.7/site-packages/matplotlib/figure.pyc in tight_layout(self, renderer, pad, h_pad, w_pad, rect)
1737 """
1738
-> 1739 from .tight_layout import (get_renderer, get_tight_layout_figure,
1740 get_subplotspec_list)
1741
/usr/local/lib/python2.7/site-packages/matplotlib/tight_layout.py in <module>()
15 from matplotlib.transforms import TransformedBbox, Bbox
16
---> 17 from matplotlib.font_manager import FontProperties
18 rcParams = matplotlib.rcParams
19
/usr/local/lib/python2.7/site-packages/matplotlib/matplotlib/font_manager.py in <module>()
1448 verbose.report("Using fontManager instance from %s" % _fmcache)
1449 except:
-> 1450 _rebuild()
1451 else:
1452 _rebuild()
/usr/local/lib/python2.7/site-packages/matplotlib/matplotlib/font_manager.py in _rebuild()
1433
1434 if _fmcache:
-> 1435 with cbook.Locked(cachedir):
1436 json_dump(fontManager, _fmcache)
1437
AttributeError: 'module' object has no attribute 'Locked'
最佳答案
所以我现在要回答我自己的问题。
我通过使用 Macports 虚拟环境解决了这个问题
sudo port selfupdate
sudo port install python27
sudo port install py27-virtualenv
/opt/local/bin/virtualenv-2.7 $HOME/local/python/27
添加到 .bash_profile:
alias py27="source $HOME/local/python/27/bin/activate"
在终端中运行以设置虚拟环境并使用 pip 安装所需的包。
py27
which pip
$HOME/local/python/27/bin/pip
pip install ipython etc
奇怪的是自制软件安装出了问题,我想知道是否安装了任何冲突的包。
不确定是否相关,但这是我的 .bash_profile:
# some settings to prefer homebrew paths in case it exists:
if which -s brew ; then
PATH="/usr/local/bin:/usr/local/sbin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
这可能把事情搞砸了。
关于python - Seaborn OS X : seaborn. pairplot() ValueError: 'transform' must be an instance of 'matplotlib.transform.Transform',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38688881/
我正在尝试并行运行具有循环返回值的函数。但它似乎停留在 results = pool.map(algorithm_file.foo, population) 在 for 循环的第二次迭代中 r
Serving Flask 应用程序“服务器”(延迟加载) 环境:生产警告:这是一个开发服务器。不要在生产部署中使用它。请改用生产 WSGI 服务器。 Debug模式:开启 在 http://0.0.
我使用“product.pricelist”模型中的 get_product_price_rule() 函数。我的代码是: price = self._get_display_price(produ
我收到以下错误: Traceback (most recent call last): File "/home/odroid/trackAndFollow/getPositions.py", line
我正在尝试采用机器学习方法,但遇到了一些问题。这是我的代码: import sys import scipy import numpy import matplotlib import pandas
我尝试使用 tensorflow 1.4.0 对我的原始记录进行分类。过程如下。 拳头:读取图片和标签,输出“tfrecord”格式的文件。第二:读取tf记录和训练 编写tfrecord脚本是 !/u
我是新手,所以需要任何帮助,当我要求一个例子时,我的教授给我了这段代码,我希望有一个工作模型...... from numpy import loadtxt import numpy as np fr
我无法弄清楚为什么会出现此 ValueError...为了提供一些上下文,我正在使用 requests、BeautifulSoup 和 json 与 python 来抓取站点 json 数据。 我不确
我已经尝试使用这两个循环以及列表理解。即使我正在尝试将数字转换为列表中的整型,两者都无法解析整数。
我已经尝试使用这两个循环以及列表理解。即使我正在尝试将数字转换为列表中的整型,两者都无法解析整数。
我只有四个星期的 Python 经验。使用 Tkinter 创建一个工具,将新的公司 Logo 粘贴到现有图像之上。 下面的方法是获取给定目录中的所有图像并将新 Logo 粘贴到初始级别。现有图像、编
我只有四个星期的 Python 经验。使用 Tkinter 创建一个工具,将新的公司 Logo 粘贴到现有图像之上。 下面的方法是获取给定目录中的所有图像并将新 Logo 粘贴到初始级别。现有图像、编
我在尝试在 Keras 2.0.8、Python 3.6.1 和 Tensorflow 后端中训练模型时遇到问题。 错误消息: ValueError: Error when checking targ
我已经尝试使用这两个循环以及列表理解。即使我正在尝试将数字转换为列表中的整型,两者都无法解析整数。
我有这段代码: while True: try: start = int(input("Starting number: ")) fin = int(i
我是 python 的初学者编码员,试图制作一个“模具滚筒”,您可以在其中选择模具的大小,它在我的代码的第 20 行返回此错误 import sys import random import geto
我有以下代码: import fxcmpy import pandas as pd from pandas import datetime from pandas import DataFrame a
我正在尝试使用 django 和 python 制作一个博客应用程序。我也在尝试使用 s3 存储桶进行存储,使用 heroku 进行部署。我正在学习 coreymschafer 的在线教程。我正在按照
我创建了一个 numpy 数组(考虑输入数据)并想更改顺序(一些数值运算后的输出数据)。在使用转换后的数组时,我遇到错误并找到了根本原因。请在下面找到详细信息并使用 numpy 版本 1.19.1 i
我已经引用了之前的查询 All arguments should have the same length plotly但仍然没有得到我的问题的答案。 我有一个黄金价格数据集。 Date
我是一名优秀的程序员,十分优秀!