All Projects → dkackman → Linqstatistics

dkackman / Linqstatistics

Licence: apache-2.0
Linq extensions to calculate basic statistics

Projects that are alternatives of or similar to Linqstatistics

Openmx
Repository for the OpenMx Structural Equation Modeling package
Stars: ✭ 60 (-23.08%)
Mutual labels:  statistics
Structural Equation Modeling For Psychologists
Lesson files used in the Structural Equation Modeling for Psychologists.
Stars: ✭ 69 (-11.54%)
Mutual labels:  statistics
Volume approximation
Practical volume computation and sampling in high dimensions
Stars: ✭ 75 (-3.85%)
Mutual labels:  statistics
Philentropy
Information Theory and Distance Quantification with R
Stars: ✭ 65 (-16.67%)
Mutual labels:  statistics
Hackerrank
This is the Repository where you can find all the solution of the Problems which you solve on competitive platforms mainly HackerRank and HackerEarth
Stars: ✭ 68 (-12.82%)
Mutual labels:  statistics
Metriculous
Measure and visualize machine learning model performance without the usual boilerplate.
Stars: ✭ 71 (-8.97%)
Mutual labels:  statistics
Stream Statistics
streaming statistical calculations for node
Stars: ✭ 59 (-24.36%)
Mutual labels:  statistics
Hyperlearn
50% faster, 50% less RAM Machine Learning. Numba rewritten Sklearn. SVD, NNMF, PCA, LinearReg, RidgeReg, Randomized, Truncated SVD/PCA, CSR Matrices all 50+% faster
Stars: ✭ 1,204 (+1443.59%)
Mutual labels:  statistics
Datacamp
🍧 A repository that contains courses I have taken on DataCamp
Stars: ✭ 69 (-11.54%)
Mutual labels:  statistics
Wikipediatrend
A convenience R package for getting Wikipedia article access statistics (and more).
Stars: ✭ 73 (-6.41%)
Mutual labels:  statistics
Lm Glm Glmm Intro
A unified framework for data analysis in R based on GLM/GLMM
Stars: ✭ 65 (-16.67%)
Mutual labels:  statistics
Ruby Statistics
Ruby gem for some statistical operations without any statistical language dependency
Stars: ✭ 67 (-14.1%)
Mutual labels:  statistics
Fecon236
Tools for financial economics. Curated wrapper over Python ecosystem. Source code for fecon235 Jupyter notebooks.
Stars: ✭ 72 (-7.69%)
Mutual labels:  statistics
Django Statsy
Statistics for your Django project
Stars: ✭ 64 (-17.95%)
Mutual labels:  statistics
Fermat.js
Mathematics and statistics library for TypeScript.
Stars: ✭ 74 (-5.13%)
Mutual labels:  statistics
Data Science Best Resources
Carefully curated resource links for data science in one place
Stars: ✭ 1,104 (+1315.38%)
Mutual labels:  statistics
Coinmetrics Tools
Coinmetrics.io tools suite
Stars: ✭ 70 (-10.26%)
Mutual labels:  statistics
Github Traffic
Get the Github traffic for the specified repository
Stars: ✭ 77 (-1.28%)
Mutual labels:  statistics
Projpred
Projection predictive variable selection
Stars: ✭ 76 (-2.56%)
Mutual labels:  statistics
Categoricalarrays.jl
Arrays for working with categorical data (both nominal and ordinal)
Stars: ✭ 71 (-8.97%)
Mutual labels:  statistics

LinqStatistics

Linq extensions to calculate basic statistics

Extension methods to compute basic statistics modeled after Enumerable.Average. Stats include:

  • Covariance
  • Median
  • Mode
  • Pearson's Correlation Coefficient
  • Range
  • Standard Deviation (sample and population)
  • Variance (sample and population)
  • Root Mean Square
  • Least Squares Linear Regression
  • CountEach
  • Histogram

Basic usage looks like:

static void Main(string[] args)
{
    IEnumerable<int> data = new int[] { 1, 2, 5, 6, 6, 8, 9, 9, 9 };

    Console.WriteLine("Count = {0}", data.Count());
    Console.WriteLine("Average = {0}", data.Average());
    Console.WriteLine("Median = {0}", data.Median());
    Console.WriteLine("Mode = {0}", data.Mode());
    Console.WriteLine("Sample Variance = {0}", data.Variance());
    Console.WriteLine("Sample Standard Deviation = {0}", data.StandardDeviation());
    Console.WriteLine("Population Variance = {0}", data.VarianceP());
    Console.WriteLine("Population Standard Deviation = {0}", data.StandardDeviationP());
    Console.WriteLine("Range = {0}", data.Range());
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].