15
Statistics Assignment Help e-Assignmenthelp © e-Assignmenthelp, 2014

Statistics Assignment Help now at e-Assignmenthelp

Embed Size (px)

DESCRIPTION

Statistics is a sub-branch of Mathematics that deals with the collection, analysis and interpretation of huge amounts of statistical data, which can be used to forecast, predict or understand a lot of complex time-series events such as weather forecasting, stock option trades, information theory, etc. Keeping in mind the diversity of teaching worldwide, and the fact that the study of mathematics is incomplete without adequate quality-mentoring, E Assignent Help is proud to introduce Statistics Homework Help, Statistics Assignment Help, Statistics Term Paper Help, Statistics Thesis Help, Statistics Dissertation Help, etc. For any professional assistance in Statistics Assignment, Statistics Homework, Statistics Projects, etc., feel free to contact the distinguished pool of Statistics tutors at e-Assignmenthelp. The Online Statistics Tutors and Statistics Experts at e-Assignmenthelp will provide detailed solutions for all your needs in your coursework related to Statistics. The Statistics homework/assignment help feature at e-Assignmenthelp has been designed to guide you through all your homework, assignment, term paper, and project paper problems. Statistics assignment/homework help tutors at e-Assignmenthelp are distinguished academicians in their fields and are well versed with any referencing style, be it Harvard or APA or any other. Mentoring is provided to high school/ college/ university students with their assignments. With the quality of College Statistics Homework Help and University Statistics Homework Help provided at e-Assignmenthelp, students can be assured of state-of-the-art mentoring for all high school, undergraduate, graduate and Phd level students. Some of the topics in which students can expect high-quality assistance from expert solvers and mathematicians are listed below: 1. Probability Theory Homework Help 2. Stochastic Processes Assignment Help 3. Markov Chains Assignment Help 4. Normal Distribution Homework Help 5. Poisson Processes Assignment Help 6. Time Series Analysis Help

Citation preview

Page 1: Statistics Assignment Help now at e-Assignmenthelp

Statistics Assignment Help

e-Assignmenthelp

© e-Assignmenthelp, 2014

Page 2: Statistics Assignment Help now at e-Assignmenthelp

Topic: Smoothing of data

Problem statement1. Produce a discrete time series by

super positioning 5 cosinusoidal components

for your own choice of the amplitudes and frequencies .

© e-Assignmenthelp, 2014

Page 3: Statistics Assignment Help now at e-Assignmenthelp

Topic: Smoothing of data

Problem statement2. Add some Gaussian noise to each

digitised value. Experiment with amplitudes (including that of the noise term), and frequencies, showing results

graphically. Then smooth your noisy time series with at least two different filters, e.g., a simple moving average smoother

and an order two binomial filter.

© e-Assignmenthelp, 2014

Page 4: Statistics Assignment Help now at e-Assignmenthelp

Topic: Smoothing of data

Problem statement3. Verify the validity of the

expression below, for your chosen smoother.

© e-Assignmenthelp, 2014

Page 5: Statistics Assignment Help now at e-Assignmenthelp

Part 1: Data Initialization

• The set of amplitudes chosen was [0.5, 1.0, 1.5, 2.0, 2.5].

• The set of frequencies chosen was [0.2, 04, 0.6, 0.8, 1.0].

• A floating point array of length 300 was created to represent the ‘time instants’ and the ‘noise’.

• A random number generator would then compound this noise to the original signal after multiplying by a factor of 0.5. Thus, a time-series was created, consisting of discrete amplitudes at different time instants.

© e-Assignmenthelp, 2014

Page 6: Statistics Assignment Help now at e-Assignmenthelp

Part 1: Generation of the sinusoidal plot

• A noiseless sinusoidal plot of the time series was generated by using the equation

which superimposed four different amplitudes

and four corresponding frequencies respectively.

• In the program, this was done by using two ‘for’ loops on the equation.

© e-Assignmenthelp, 2014

Page 7: Statistics Assignment Help now at e-Assignmenthelp

Part 1: Plots and Results

© e-Assignmenthelp, 2014

Plot of the sinusoidal signal created by superimposition of amplitudes and frequencies.

Page 8: Statistics Assignment Help now at e-Assignmenthelp

Part 2: Data Smoothing

© e-Assignmenthelp, 2014

The signal, with noise added with varying parameters,was smoothed using two different filters: 1. 5 point centred moving average filter.2. Binomial filter.

Page 9: Statistics Assignment Help now at e-Assignmenthelp

Part 2: 5 point centred moving average filter

The 5 point centred moving average filter was created using the following formula:

The use of this filter was found to remove the noise of the sinusoidal signal significantly by use of a 5-point moving average.

© e-Assignmenthelp, 2014

Page 10: Statistics Assignment Help now at e-Assignmenthelp

5 point centred moving average filter: Results

© e-Assignmenthelp, 2014

Plot of the smoothed signal, using a 5 point centred moving average filter

Page 11: Statistics Assignment Help now at e-Assignmenthelp

5 point centred moving average filter: Results

© e-Assignmenthelp, 2014

Plot of the smoothed signal vs that of the original noisy signal, using a 5 point centred moving average filter.

Page 12: Statistics Assignment Help now at e-Assignmenthelp

Part 2: Binomial Filter

© e-Assignmenthelp, 2014

• The binomial filter was implemented using the following formula.

• In this formula, we differ from the earlier in the aspect that the coefficients of the weighted terms are binomial coefficients of degree 5. The weight, 16, is the sum of all the individual weights.

Page 13: Statistics Assignment Help now at e-Assignmenthelp

Binomial Filter: Results

© e-Assignmenthelp, 2014

• Plot of the sinusoidal filter, smoothed using a 5th order binomial filter.

Page 14: Statistics Assignment Help now at e-Assignmenthelp

Part 3: Comparison of smoothing methods

© e-Assignmenthelp, 2014

The final part of the experiment was the comparison of smoothing done by each filtering method. For this, the mean and variance of the noisy signal and the smoothed signal, done by both filters, was compared.

  Mean Mean difference Variance Variance difference

Original 0.012425 0 11.8078 0

5 point centred moving average filter

0.013343 0.0009183 11.271 0.5368

5th order binomial filter

0.012716 0.0002907 11.3401 0.4677

Page 15: Statistics Assignment Help now at e-Assignmenthelp

Results and Conclusions

© e-Assignmenthelp, 2014

1. The use of the 5 point moving average filter was found to remove the noise of the sinusoidal signal significantly by use of a 5-point moving average.

2. On the contrary, the binomial filter gives more weight to the point being replaced, since its coefficient is the highest among the five points being considered.

3. Since the mean and variance of the 5th order binomial filter were closer to the expected values, it is found to be the better of the two for smoothing noisy sinusoidal signals.