#5 - Statistical Measures for Exploratory Data Analysis
Introduction
Statistics is a branch of mathematics (applied mathematics) concerned mainly with the analysis of the data. It includes - collection, analysis, interpretation, and presentation of huge numerical data. There are a variety of numerical mea...
msameeruddin.hashnode.dev7 min read
Roman Kushnirenko
Sameer, thank you so much for your knowledge sharing! Small comment according Mode computation. Mode for group of numbers with same frequency should be calculated as mean [6, 2, 6, 6, 8, 9, 9, 9, 0] (6+9)/2=7,5. So code
return min(mode)should be replaced withreturn np.mean(mode)