library(fitdistrplus)
library(mclust, quietly = TRUE)
data_frame <- read.csv(paste0(rootaddress, 'Site A-2008.csv'))
winter <- as.numeric(data_frame[(4:2020),8])
plot(winter, main ="January 1 - January 8", xlab = "days", ylab = "Wind Speed (m/s)", type ="l")
So, what I am trying to do is have the y axis be the wind speed and the x axis be the date which should be limit to 1-8 days. Whenever I try to do the command xlim = c(1,8), the graph levels out .