如何在googleVis for R图表中自定义点的笔划宽度?

时间:2015-08-01 00:10:10

标签: r google-visualization bubble-chart googlevis

我在R。

中使用googleVis created a bubble chart

我真的想摆脱点的灰色笔划,因为它看起来很丑陋,而且更多的点聚集在一起它只会形成一组丑陋的线条。

我在“用户指南”中读到,可以对其进行自定义,但是他们的说明适用于Java版本,并且它似乎不适用于R googleVis包。

有什么想法吗?

plot <- gvisBubbleChart(gene.correlations.sub, idvar="Gene", xvar="IPC_NonDividing", yvar="RG_NonDividing", sizevar="IPC_Dividing",
                        options=list(
                                width=1200, 
                                height=800,
                                sizeAxis="{minValue:0, maxvalue:1, minSize:3, maxSize:3}",
                                title="Gene Correlations with Ideal Non-Dividing IPC and RG Genes",
                                hAxis="{title:'Ideal IPC Gene Correlation'}", 
                                vAxis="{title:'Ideal RG Gene Correlation'}",
                                displayMode='markers',
                                colorAxis="{colors:['blue', 'white', 'red']}"

                        )
)

print(plot, file="geneCorrelations.html")

0 个答案:

没有答案