在R中绘制线图,在x轴上缺少数据

时间:2016-01-30 15:38:23

标签: r plot graph data-visualization line-plot

我是R的新手,想绘制折线图。我已将数据导入R并且不知道下一步该去哪里!我在互联网上搜索了如何绘制折线图的例子,但找不到任何可以解释为什么使用各种命令的东西(我认为我需要了解正在发生的事情)。任何人都可以推荐针对初学者的任何此类教程/说明吗?

可能使问题进一步复杂化,我想绘制的折线图在x轴上没有均匀间隔的数据点(0.19,0.31和0.36)。我想在情节中反映这一点,但不知道如何编程。

提前感谢大家的帮助!

2 个答案:

答案 0 :(得分:0)

有许多方法可以在R中绘图。一种是使用Base r命令,就像这样

x <- c(0.19, 0.31, 0.36)

y <- c(1,2,3)

plot(x,y,type = "l")

在线查看ggplot和格子图的绘图示例。

答案 1 :(得分:0)

我建议您报告一些数据以及您正在处理的代码示例。它可以帮助社区检查您的问题。 无论如何,如果我正确地解决了你的问题,R会自动处理NAs,这些都没有在图中报告。您可以在then take a look at the setup.cfg file. Some of the options available in setup.cfg are also available as command line arguments of the build_ext sub-command. For instance you can specify an alternate pg_config version using: $ python setup.py build_ext --pg-config /path/to/pg_config build Use python setup.py build_ext --help to get a list of the options supported. 函数中使用type = "l"(“l”代表“line”)的折线图。

plot()

http://learn.elgg.org/en/2.0/guides/dont-modify-core.html