Book Image

Java Data Analysis

By : John R. Hubbard
Book Image

Java Data Analysis

By: John R. Hubbard

Overview of this book

Data analysis is a process of inspecting, cleansing, transforming, and modeling data with the aim of discovering useful information. Java is one of the most popular languages to perform your data analysis tasks. This book will help you learn the tools and techniques in Java to conduct data analysis without any hassle. After getting a quick overview of what data science is and the steps involved in the process, you’ll learn the statistical data analysis techniques and implement them using the popular Java APIs and libraries. Through practical examples, you will also learn the machine learning concepts such as classification and regression. In the process, you’ll familiarize yourself with tools such as Rapidminer and WEKA and see how these Java-based tools can be used effectively for analysis. You will also learn how to analyze text and other types of multimedia. Learn to work with relational, NoSQL, and time-series data. This book will also show you how you can utilize different Java-based libraries to create insightful and easy to understand plots and graphs. By the end of this book, you will have a solid understanding of the various data analysis techniques, and how to implement them using Java.
Table of Contents (20 chapters)
Java Data Analysis
Credits
About the Author
About the Reviewers
www.PacktPub.com
Customer Feedback
Preface
Index

Moving average


A moving average (also called a running average) for a numeric time series is another time series whose values are averages of progressive sections of values from the original series. It is a smoothing mechanism to provide a more general view of the trends of the original series.

For example, the three-element moving average of the series (20, 25, 21, 26, 28, 27, 29, 31) is the series (22, 24, 25, 27, 28, 29). This is because 22 is the average of (20, 25, 21), 24 is the average of (25, 21, 26), 25 is the average of (21, 26, 28), and so on. Notice that the moving average series is smoother than the original, and yet still shows the same general trend. Also note that the moving average series has six elements, while the original series had eight. In general, the length of the moving average series will be n – m + 1, where n is the length of the original series and m is the length of the segments being averaged; in this case, 8 – 3 + 1 = 6.

Listing 3-5 shows a test program for...