问题标签 [python-ggplot]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ipython - 无法在 iPython 中导入 ggplot 模块
我正在尝试在 Anaconda iPython 笔记本中使用 ggplot。我跑了%matplotlib inline
,from ggplot import *
但我只是收到以下错误:
在 Anaconda 启动器的哪里可以导入模块?
python - Spyder新手看不到生成的图表
我对 Spyder 很陌生。我发现它很有用,但让我感到困惑的一件事是使用图形和图表。下面是正在进行的代码构建,用于显示条形图,显示雨天和旱天的地铁使用情况。在这一点上,我只是想看到下雨天(我不是一个程序员,所以我只是一步一步地进行)。IPython 控制台返回
所以看起来它至少已经运行了。但是,我找不到如何实际查看图表。
这是我正在运行的代码:
我错过了哪些 Spyder 设置,或者我做错了什么?
python - 在 python 中安装 ggplot 时出错
尝试ggplot
在 Python 中安装时出现此错误:
ImportError:无法导入名称 unpack_url
我正在使用以下命令:
这个错误是在linux环境下,运行fedora 21。
python - Bar Chart on ggplot with Python
I try to create a chart in Python using ggplot library.
My data is in this format:
I want to create a bar chart where every id has it's own bar. The y will be the average of total column for the specific id and also add error area with min and max for each bar.
I am new on ggplot. I have worked with scatter plots and line graph but not with bar chart.
I found that bar charts can be created with
gg = ggplot(mydata, aes(....)) + geom_bar()
But I cannot figure what to add on aes.
python - ggplot 条形图语义
我第一次尝试在 Python 中使用 ggplot,语义对我来说完全不明显。
我有一个带有两列的熊猫数据框:date
和entries_sum
. 我想要做的是绘制一个条形图,将date
列作为每个条目x-axis
并entries_sum
作为各自的高度。
我无法弄清楚如何使用ggplot
API 做到这一点。我是否为此错误地格式化了我的数据?
python - 如何在 Python 中为聚类制作散点图
我正在执行聚类并尝试绘制结果。一个虚拟数据集是:
数据
集群中心
问题
我想制作一个散点图来显示点data
并根据集群标签为点着色。
然后我想将center
点叠加在同一个散点图上,以另一种形状(例如“X”)和第五种颜色(因为有 4 个簇)。
评论
- 我转向seaborn 0.6.0 但没有找到完成任务的 API。
- yhat的 ggplot 可以使散点图很好,但第二个图将取代第一个图。
- 我对matplotlib
color
中的and感到困惑,所以我想知道是否可以使用 seaborn 或 ggplot 来做。cmap
python - 条形图python ggplot上的分类x数据
图片说明了这个问题——你能去掉 x 轴上这些额外的 'foo' 和 'bar' 刻度吗?
python - 相同ggplots上的3个数据框
我查看了很多示例,但没有找到与我的具体问题相匹配的示例。
我有 3 个具有相同列标题和 18 行数据的 DataFrame。行标题是相同的名称。它们之间只有数据不同。下面的例子:
共有 30 列,每列有 2 个子列。
我的 3 个数据框被称为:
我需要为每个主列创建一个图,每个主列每圈有 3 个条(即 T1)这些条中的每一个都是 DF 中的“平均”列,然后将误差条作为每个条的“标准”列。
我没有使用 GGPlot 的经验,所以如果我正在尝试答案,请耐心等待缓慢的响应。
以上是我使用 MatPlotLib 制作的前一个示例,以及在使用 DataFrames 之前更糟糕的代码。但它看起来几乎和我需要的一样。
如果我错过了任何信息,请告诉我。
谢谢您的帮助。