Skip to Content
Big Data Analytics with Java
book

Big Data Analytics with Java

by RAJAT MEHTA
July 2017
Beginner to intermediate
418 pages
9h 46m
English
Packt Publishing
Content preview from Big Data Analytics with Java

Box plots

Another very useful type of charts is box chart. Before looking into box charts, let's revise some simple mathematical concepts next. You can skip this page and directly go to the chart as well.

Suppose you have an array of numbers as shown here:

int[] numbersArr = { 5, 6, 8, 9, 2 };

Now, from this array, we have to find the following simple math stats:

  • Min: This is just the minimum value from the array and as you can see it is 2
  • Max: This is the maximum value from the array and this as you can see, is 9
  • Mean: This is the mean value of the array elements. Mean is nothing but the average value. Hence in this case it is the sum of array elements divided by the number of elements in the array.
    	(5 + 6 + 8 + 9 + 2) / 5 = 6
  • Median: If we sort the ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Data Science with Java

Data Science with Java

Michael R. Brzustowicz
Data Science on AWS

Data Science on AWS

Chris Fregly, Antje Barth
Machine Learning: End-to-End guide for Java developers

Machine Learning: End-to-End guide for Java developers

Richard M. Reese, Jennifer L. Reese, Boštjan Kaluža, Dr. Uday Kamath, Krishna Choppella

Publisher Resources

ISBN: 9781787288980Supplemental Content