csv_stats_analyser
v1.1.4
Published
This npm package provides functions to clean CSV data and perform basic statistical calculations in JavaScript. It includes functionalities to calculate mean, median, mode, standard deviation and quartiles of the data. The package is designed to work dire
Downloads
9
Readme
Data-Cleaning-and-Statistical-Analysis
csv_stats_analyser
is an NPM package designed for analyzing CSV files. It provides functions for parsing CSV data, cleaning it, and performing various statistical calculations, making it easier to manage and extract statistical insights from your data.
Add the following code to get the basic statistical info about your CSV Dataset
const { processCSV, mean, median, mode, standardDeviation, quartiles } = require('csv_stats_analyser');
const filePath = '/path/to/your/csv';
const columnName = 'your_column_name';
processCSV('path/to/your/file.csv', 'column_name');
The above code will console the measures of central tendency (like mean, median, mode, standard deviationa and quartiles)
To access the variables used follow the code below:-
console.log('Processed Data:', data);
console.log(`Mean of ${columnName}:`, mean(data, columnName));
console.log(`Median of ${columnName}:`, median(data, columnName));
console.log(`Mode of ${columnName}:`, mode(data, columnName));
console.log(`Standard Deviation of ${columnName}:`, standardDeviation(data, columnName));
console.log(`Quartiles of ${columnName}:`, quartiles(data, columnName));
Tip : Try to attach a relative path in FilePath
for your CSV File