ggplot意外地显示多个轴

时间:2017-09-27 04:03:30

标签: r plot ggplot2 scatter-plot axis-labels

我试图制作以下数据的散点图:

imap_timeout(2,999)

和代码:

cellines     TFs                V3                V4
1     A549    ATF3 -63.6777147567198  15.8519394572415
2     A549    BCL3 -61.1807150847571  15.8274988278844
3     A549 BHLHE40  49.0082575992423  43.4891023541967
4     A549   CEBPB  18.9039338584414 -66.8282282747146
5     A549    CTCF  52.6089140710441 -42.5728622947219
6     A549    ELF1  27.3004998230339  42.2866894056312

但这是我得到的: Plot showing unexpected axis

我也得到了错误:

p <- ggplot(tsne_plot,aes(x=V3,y=V4,col=TFs))
p + geom_point() + theme(legend.position="none")

目标是制作只有一个轴的图。谁能在这帮助我?

0 个答案:

没有答案