Question: Using Python program, we need to create a time series dataset with normal white noise (zero mean and standard deviation of 1) and 1000
Using Python program, we need to create a time series dataset with normal white noise (zero mean and standard deviation of 1) and 1000 samples. The date range from Jan 1st 2000 through December 31st 2000. Plot the generated time series dataset versus time. Plot the histogram of generated WN. Calculate the sampled mean and sampled std of generated WN. You can use the following command to generate WN (0,1): (T # of samples) np.random.normal(mean, std, size=T)
Step by Step Solution
3.47 Rating (160 Votes )
There are 3 Steps involved in it
import numpy as np import matplotlibpyplot as plt import pandas as pd Set random seed for reproduci... View full answer
Get step-by-step solutions from verified subject matter experts
