This might sound easy question to some people, but I am a beginner in R and I couldn't find an answer to my problem.
So, basically, I have uploaded my excel data into R. I have three variables. The first variable is in the format of the date (1994-01-03), the other two are just numbers.
I have plotted my main graphs using this command:
plot(dataset$observation_date,dataset$interest_rate,t="l", xlab = "Observation date" , ylab = "Interest Rate")
Now I need to plot a graph of the "log" and "first difference of log" of two variables.
Big thanks in advance for any help!!