我有一个数据集如下:
我想在X轴上绘制实际和拟合的X轴,它将显示周和年。
我创建了一个名为Year_Week的新变量,并尝试绘制它,因为x轴采用升序数据。数据正确绘制,但我正在努力寻找X轴的命名。
这是我正在使用的plot_ly代码。
output$plot_forecast <- renderPlotly({
data <- forecast_data()
plot <- plot_ly(data, type = "scatter", mode = 'lines') %>%
add_lines(x = ~ data$year_week,
y = ~ data$actual,
name ="Actual",
line=list(color="Red")) %>%
add_lines(x = ~ data$year_week,
y = ~ data$fitted,
name ="Predicted",
line=list(color="Green")) %>%
layout(title = "Total Sales (Actual vs Predicted)",
xaxis = list(title = "Year Week"),
yaxis = list (title = "Total POS Sales"),
legend = list(x = 100, y = 0.5))
return(plot) })
x轴目前显示201.49K表示2014年第9周,201.53K表示2015年第3周。
我需要x轴比这些数字更好。