R图例未在图中显示

时间:2019-04-04 03:27:37

标签: r plot legend

对于简单的绘图,我有以下R代码:

ExperimentDataNames = c('Count', 'HumanData', 'ActualPrices')
ExperimentData <- read_csv("/Users/justin_chudley/desktop/ExperimentData.csv", col_names = ExperimentDataNames)

x <- Count <- ExperimentData$Count
y <- HumanData <- ExperimentData$HumanData
y1 <- ActualPrices <- ExperimentData$ActualPrices

plot(x,y, type = "l", xlab="Trial Number",ylab="$USD",main="Dow Jones Price vs Human Experiment")
lines(x,y1, type = "l", col=2)
legend=c('Human Data', 'Actual Prices') 

由于某些原因,图例在此图中完全不显示:enter image description here

为什么我的图例不显示?

1 个答案:

答案 0 :(得分:5)

通过编码,您已将字符向量分配给名为legend的对象。

要添加图例,您需要使用legend()函数。

legend(x = 10, y = 4e5, 
       col = c("black", "red"), lty = 1, lwd = 1,
       legend = c('Human Data', 'Actual Prices'))

您可以使用启发式方法,方法是更改​​xy中的值,直到找到所需的位置。另外,您也可以将x设置为几个预定义值之一:

legend(x = "top",
       col = c("black", "red"), lty = 1, lwd = 1,
       legend = c('Human Data', 'Actual Prices'))

其他选项是将x设置为“右下”,“下”,“左下”,“左”,“左上”,“右上”,“右”或“中心”。