我想繪製我的數據框架使用seaborn和matplotlib,但得到錯誤就像不能將字符串轉換爲浮動。如何在python中繪製重複文本的計數
我的數據是這樣的:
ID | Status | Date | Columns|
-------+-------------+------+--------+
28 | ACTIVE | | |
29 | ACTIVE | | |
49623 | TERMINATED | | |
49624 | TERMINATED | | |
49625 | TERMINATED | | |
對於我迄今爲止嘗試:
df_count = df.apply(pd.value_counts) plt.plot(df_count)
哪裏df_count看起來像
|STATUS|
-----------+------+
ACTIVE |38537 |
TERMINATED |1185 |
當試圖做sns.barplot(df)
它提供了以下錯誤:
unsupported operand type(s) for +: 'int' and 'str'
,並試圖做plt.plot(df)
它提供了以下錯誤:
ValueError: could not convert string to float: '12/31/2014 0:00'
我的Python繪圖似乎是相當爲零請建議。
它可能如果你告訴我們,請告訴我們,最終情節應該如何。 – ImportanceOfBeingErnest