Question

In: Statistics and Probability

   67.594    40.54    50.021 73.687    68.46    82.188    101.85    105.18   ...

  
67.594
   40.54
   50.021
73.687
   68.46
   82.188
   101.85
   105.18
   92.134
   71.783
   115.81
   85.692
   72.678
   67.841
   63.279
   29.049
   90.033
   64.585
   113
   56.033
   88.472
   59.773
   15.522
   95.524
   84.56
   37.638
   45.104
   67.176
   86.339
   94.581
   99.72
   95.363
   70.734
   70.608
   39.812
   75.914
65.153
   92.468
   73.388
   104.78
   60.893
   109.95
   74.199
   53.95
   68.223
   63.766
   87.825
   137.15
   87.769
   68.162
   111.37
   95.31
   40.135
   79.45
   75.404
   110.61
   78.051
   55.79
   116.47
   85.852
   84.011
   68.444
   46.913
   38.711
   65.336
   42.437
   90.727
   82.712
   102.22
   27.043
   118.71
   66.593
   85.542
   66.96  
112.33  
   116.89
   70.223
   32.965
   66.15
   62.844
   93.294
   69.544
   90.844
   92.181
   97.225
   84.776
   57.76
   27.202
   70.862
   80.543
   108.71
   58.982
   63.762
   96.593
   58.014
   47.309
   88.032
   77.505
   43.591
   82.934
   64.312
   85.929
   77.046
   122.36
   100.21
   78.124
   93.422
   119.34
   63.39
   87.712
   60.22
   126.98
   43.249
   86.15
   78.383
   92.015
   46.322  
   52.504
   92.991
   66.411
   85.736
   87.843
   88.55
   38.061
   80.55
   59.835
   72.396
   62.749
   74.718
   85.81
   79.31
   29.875
   73.293
   91.439
   83.957
   37.404
   103.72
   80.4  
   94.527
   112.89
   62.375
   62.981
   60.04  
   58.414
   87.888
   69.281
   109.33
   125.34
   80.857
   43.623
   109.49
   87.719
   40.263
   29.503
   42.825
   61.882
   86.605
   63.362
   90.334
   52.138
   72.422
   97.703
   74.523
   57.05
   41.469
   93.761
   69.539
   59.031
   85.33
   -4.6788
   115.95
   38.456
   80.523
   104.53
   85.96  
   52.949
   57.216
   120.4
   58.832
   67.436  
   53.491
   39.374
   131.56
   48.141
   93.066
   93.855
   96.639
   72.128
   84.855
   68.769
   94.408
   39.57
   73.161
   102.12
   72.342
For the given set of stock market data you are required to perform statistical analysis of this data to find
out the mean, the variance, the mode, the median, the third quartile and the first quartile for the full
population using a Matlab program (or any other program). You are also asked to plot the histogram,
time sequence diagram and boxplot of the whole data using Matlab (or any other program).show the code in text

Solutions

Expert Solution

Here I attach the R code with answers

x=scan()
x
summary(x)
var(x)
mean(x)
library(statip)
library(modeest)
mfv1(x)

boxplot(x)
hist(x)
ts.plot(x)


Related Solutions

ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT