我对ggplot很新。我试图以这种方式创建一个dotplot。
https://stackoverflow.com/a/20621581/229075
到目前为止,我没有太多运气。我在下面的试用df=DataFrame({'label':['a','b','c'],'value':[7,2,4]})
ggplot(aes(x="value",y="label"),df) + geom_point()
给我这个错误
C:\Anaconda\lib\site-packages\numpy\core\numeric.pyc in asanyarray(a, dtype, order)
510
511 """
--> 512 return array(a, dtype, copy=False, order=order, subok=True)
513
514 def ascontiguousarray(a, dtype=None):
ValueError: could not convert string to float: a
我在R&#39的ggplot上查找了一些文档。我在使用
等构造时遇到了一些麻烦stat="identity"
coord_flip()
geom_bar(weight=?)
这些尚未实施吗?
我有Python ggplot版本0.5.0。