Questions tagged «scatter-plot»



7
在matplotlib上的散点图中为每个系列设置不同的颜色
假设我有三个数据集: X = [1,2,3,4] Y1 = [4,8,12,16] Y2 = [1,4,9,16] 我可以散点图: from matplotlib import pyplot as plt plt.scatter(X,Y1,color='red') plt.scatter(X,Y2,color='blue') plt.show() 我怎样用10套来做到这一点? 我进行了搜索,可以找到我所要求的任何参考。 编辑:澄清(希望)我的问题 如果我多次调用散点图,则只能在每个散点图上设置相同的颜色。另外,我知道我可以手动设置颜色阵列,但是我敢肯定有更好的方法可以做到这一点。我的问题是:“如何自动散布我的几个数据集,每个数据集具有不同的颜色。 如果有帮助,我可以轻松地为每个数据集分配一个唯一的编号。

14
ggplot2中具有边缘直方图的散点图
是否有办法像下面的示例中那样用边际直方图创建散点图ggplot2?在Matlab中,它是scatterhist()函数,R也存在等效项。但是,我还没有在ggplot2上看到它。 我通过创建单个图形开始尝试,但是不知道如何正确排列它们。 require(ggplot2) x<-rnorm(300) y<-rt(300,df=2) xy<-data.frame(x,y) xhist <- qplot(x, geom="histogram") + scale_x_continuous(limits=c(min(x),max(x))) + opts(axis.text.x = theme_blank(), axis.title.x=theme_blank(), axis.ticks = theme_blank(), aspect.ratio = 5/16, axis.text.y = theme_blank(), axis.title.y=theme_blank(), background.colour="white") yhist <- qplot(y, geom="histogram") + coord_flip() + opts(background.fill = "white", background.color ="black") yhist <- yhist + scale_x_continuous(limits=c(min(x),max(x))) + opts(axis.text.x = theme_blank(), axis.title.x=theme_blank(), …

8
散点图太多
我正在尝试绘制两个变量,其中N = 700K。问题是重叠太多,因此该图大部分变为黑色实心块。有什么办法可以使灰度图的暗度与区域中的点数成函数关系呢?换句话说,我不想显示单个点,而是希望该图成为一个“云”,一个区域中的点数越多,该区域越暗。
126 r  scatter-plot 

3
控制R散点图中的点大小?
在R中,该plot()函数采用一个pch参数来控制图中点的外观。我正在用数以万计的点进行散点图绘制,并且希望使用一个较小但不太小的点。基本上,我觉得pch='.'自己太小了,但又pch=19太胖了。中间是否有某种方式或某种方式可以按比例缩小点数?
116 r  plot  scatter-plot 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.