我想在我的情节上写下数据源,但显然我的代码不起作用,我无法弄清楚原因。有人可以告诉我有什么问题吗?这是完整的代码:
plot(oil$DATE, oil$VALUE, t='l', main='Crude Oil Prices since 1986', xlab='Date', ylab='USD per barrel')
text(x = 2007, y = 20, 'data source: FRED')
这是输出:
感谢您提供的任何帮助。
答案 0 :(得分:3)
试试这段代码:
plot(oil$DATE, oil$VALUE, t='l', main='Crude Oil Prices since 1986', xlab='Date', ylab='USD per barrel')
text(locator(1), 'data source: FRED')
"定位器(1)"将允许您通过鼠标识别要放置文本的位置。