Use R to generate a time series with 100 observations of white noise that follows a
uniform distribution on the interval [-1,1]. Plot the result as a time series.
Expert Answer
The command rnorm is used to simulates 1000 normal random variables with mean -1 and variance 1.
plot.ts command is used to plot the time series graph.
The code is given below:
Output: