我有一个图,该图绘制了时间序列和变量。但是,我想用另一个变量(对应的日期)替换绘图中的x轴值(时间序列值)。
变量已分别在日期和时间中编码。我创建了另一个变量'day'来编码对应于Date的工作日。
然后我想绘制时间序列,但是在x轴上我想显示“天”。
我无法绘制相对于工作日的图表,因为这会导致错误(变量不是数字)。
我该怎么做?我目前有这个:
household$day <- weekdays(household$Date) #Where Date is 'Date' variable
plot(as.numeric(household$Time), household$Global_active_power, type = "l", xaxt = 'n') # xaxt to remove the x-axis labels
# Step 3: add the weekdays in household$day to the x-axis ...
谢谢。
答案 0 :(得分:0)
我的意思是使用axis()函数替换x轴上的值。