[解決済み] モジュール Seaborn には '<any graph>' という属性がありません。
質問
ggplot2からseabornへの乗り換えで悩んでいます。 現在、Anaconda v. 4.5.8とPython 3.6.3が使用されています。
どのグラフを使っても見つかりません。 例えば、seabornのサイトから任意のコードを取得して実行することができます。
import matplotlib as plt
import seaborn as sns
sns.set(style="ticks")
dots = sns.load_dataset("dots")
# Define a palette to ensure that colors will be
# shared across the facets
palette = dict(zip(dots.coherence.unique(),
sns.color_palette("rocket_r", 6)))
# Plot the lines on two facets
sns.relplot(x="time", y="firing_rate",
hue="coherence", size="choice", col="align",
size_order=["T1", "T2"], palette=palette,
height=5, aspect=.75, facet_kws=dict(sharex=False),
kind="line", legend="full", data=dots)
sns.plt.show() #this was not on site code but tried it(plt.show() as referenced by other posts)
エラーメッセージを表示します。
File "<ipython-input-8-893759310442>", line 13, in <module>
sns.relplot(x="time", y="firing_rate",
AttributeError: module 'seaborn' has no attribute 'relplot'
これらの投稿を見ました(中略)
(1) AtributeError: 'module' オブジェクトに 'plt' 属性がない - Seaborn
(2) Seaborn ImportError: DLL のロードに失敗しました。指定されたモジュールが見つかりませんでした
(3) pipインストール成功後のImportError
(4) PythonのSeabornモジュールのインポートエラー
で、説明されているインストール/アンインストール方法( python -m pip install seaborn, uninstall seaborn/ reinstall - etc. )を試しました。condaを使ったcondaとpipを使ったcmdの両方でやりました。
PATHsにあまり時間をかけていませんが、スクリーンショットを掲載します。
何かアイデアはありますか?
ありがとうございました。
解決方法は?
でその例を見つけました。
最新
のバージョンは、seabornモジュールの
0.9
. からは
"各バージョンの新着情報"
のセクションをご覧ください。
新しいリレーショナルプロット
3つの全く新しいプロット関数が追加されました:relplot(), scatterplot()およびlineplot()
そのため、これらのプロット関数を使用するには、シーボーンを最新のバージョンにアップデートする必要があります。
関連
-
[解決済み】ImportError: sklearn.cross_validation という名前のモジュールがない。
-
[解決済み】"No JSON object could be decoded "よりも良いエラーメッセージを表示する。
-
[解決済み] 'int'オブジェクトに'__getitem__'属性がない。
-
[解決済み】Python Error: "ValueError: need more than 1 value to unpack" (バリューエラー:解凍に1つ以上の値が必要です
-
[解決済み] モジュールの関数名(文字列)を使って、モジュールの関数を呼び出す。
-
[解決済み] Pythonでオブジェクトが属性を持つかどうかを知る方法
-
[解決済み] フルパスでモジュールをインポートするには?
-
[解決済み] XMLを解析して、特定のノード属性のインスタンスをカウントするには?
-
[解決済み] エラーです。" 'dict' オブジェクトには 'iteritems' という属性がありません "
-
[解決済み] Seaborn軸または図レベルプロットの図サイズを変更する方法
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
PicgoのイメージベッドツールをPythonで実装する
-
Python機械学習Githubが8.9Kstarsに達したモデルインタープリタLIME
-
Python interpreted model libraryによる機械学習モデル出力の可視化 Shap
-
[解決済み】pygame.error: ビデオシステムが初期化されていない
-
[解決済み】TypeError: re.findall()でバイトのようなオブジェクトに文字列パターンを使用することはできません。)
-
[解決済み】Django: ImproperlyConfigured: SECRET_KEY 設定は空であってはならない
-
[解決済み】IndexError: invalid index to scalar variableを修正する方法
-
[解決済み】「OverflowError: Python int too large to convert to C long" on windows but not mac
-
[解決済み】 TypeError: += でサポートされていないオペランド型: 'int' および 'list' です。
-
[解決済み】 'numpy.float64' オブジェクトは反復可能ではない