seaborn

    0熱度

    1回答

    我得到了一個包含一些我們必須手動分類的數據的大文件,因此,使用Excel我們放置了一個應該填充「Y」或「N」(主要是其他值)的列,如果該行符合某些標準。 因此,我正在撰寫一份關於我們已經完成的工作比例的報告,並且我想包括一些圖表。 使用熊貓的情節,這種說法會做的工作: sw.industrial.value_counts(dropna=False).plot(kind='bar') 隨着sea

    0熱度

    1回答

    image enclosd 我該如何讓所有數據顯示?現在孩子的情節被切斷 這裏是我的代碼: # since it is a column and not index we need to set axis to 1 titanic_df['Personstatus'] = titanic_df[['Age','Sex']].apply(male_female_child,axis=1) f

    1熱度

    1回答

    我正在嘗試使用seaborn將以下數據集繪製爲barplot暨pointplot。 但是時間戳在x軸標籤示出了在端部附加零如下所示 我使用的代碼是 import matplotlib.pyplot as plt import seaborn as sns fig, ax1 = plt.subplots() # Plot the barplot sns.barplot(x='Date', y

    0熱度

    1回答

    我使用下面的代碼來讀取Excel文件並使用seaborn軟件包繪製boxplot。 import scipy.stats as sps import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns from openpyxl import load_workbook

    2熱度

    1回答

    我映射seaborn stripplot到seaborn用下面的代碼PairGrid: import pandas as pd import seaborn as sns df = (pd.read_csv(filepath_or_buffer='http://vincentarelbundock.github.io/' + 'Rdatasets/csv/ggplot2/di

    0熱度

    1回答

    我要繪製兩個箱線圖和一個數字的平均值。到目前爲止,我的情節看起來像這樣使用這些代碼: sns.swarmplot(x="stimulus", y="data", data=spi_num.astype(np.float), edgecolor="black", linewidth=.9) sns.boxplot(x="stimulus", y="data", data=spi_num.astyp

    0熱度

    1回答

    我有matplotlib 2.0.2和seaborn 0.8,但兩者在jupyter notebook 5.0.0中似乎都不兼容。在我有一個老版本的matplotlib之前曾與seaborn一起工作,那麼有人知道matplotlib 2及以上版本是否有兼容的seaborn版本?它不會拋出任何錯誤,但它不能使用seaborn api應用設置,例如,下面的內容無法更改圖表的大小並應用指定的網格線。這並

    0熱度

    1回答

    我試圖繪製與distplot()分配刪除配合,我想在y軸上 絕對數量,而不是相對頻率沒有擬合函數 我認爲(1)可以實現通過設置norm_hist=False,不過,相對於頻率示出在y軸上: 但是沒問題,我可以解決,通過直接設置底層pyplot.hist圖的「範」關鍵字: 不過,現在我有問題,該擬合函數(用pyplot.plot創建)仍然適用於規範化的值,因此位於圖形底部的某處。我想完全擺脫適合的情

    0熱度

    1回答

    我有一個包含元素列表這樣一個數據幀的每個元素: 我有10個刺激值和每刺激16個試驗。列表包含尖峯列車的尖峯振幅值。所以如果有例如列表中有兩個值33和34,我的算法發現了兩個33mV和34mV的尖峯。我想繪製所有這些值來獲得我的數據印象。 目前我使用這些代碼來獲得該地塊 flatui = ["#9b59b6", "#3498db", "#95a5a6", "#e74c3c", "#34495e",

    0熱度

    1回答

    我試圖用distplot來繪製double值的數組,但失敗了。以下是我的源代碼: >>> import seaborn as sns, numpy as np >>> sns.set(); np.random.seed(0) >>> x = np.random.randn(100) >>> ax = sns.distplot(x) 下面是我得到的錯誤。我不知道我的代碼有什麼問題。有誰知道