Skip to content

Instantly share code, notes, and snippets.

@johnmyleswhite
Created December 15, 2013 18:17
Show Gist options
  • Save johnmyleswhite/7976239 to your computer and use it in GitHub Desktop.
Save johnmyleswhite/7976239 to your computer and use it in GitHub Desktop.
Stats Roadmap

This outlines a roadmap for basic statistical functionality that Julia needs to offer. It is heavily drawn from the table of contents for MASS.

  • Data processing DataFrames.jl
    • reshape
      • cast
      • melt
    • plyr
      • ddply
  • Probability distributions Distributions.jl
    • Univariate distributions
    • Multivariate distributions
    • Matrix distributions
  • Statistical graphics Gadfly.jl
    • Render to native windows by default in REPL
    • Add missing functionality found in ggplot2
  • Resampling Methods Resampling.jl
    • Bootstrap
      • Nonparametric
      • Parametric
    • Cross-validation
      • Leave-one out
      • k-Fold
      • Random resampling
  • Linear regression GLM.jl
  • Generalized linear models GLM.jl
  • Nonlinear least squares
  • Tree-based methods
  • Neural networks
    • Perceptrons
    • 1-hidden layer
    • Deep neural networks
    • Convolutional neural networks
  • Generalized additive models
    • gam
  • Random and mixed effect models MixedModels.jl
    • lmer
  • Clustering Clustering.jl
    • k-Means
    • dp-Means
    • DBSCAN
    • Affinity propagation
  • Dimensionality reduction DimensionalityReduction.jl
  • Factor analysis
  • Support vector machines
  • Survival analysis
    • Cox model
  • Time series analysis TimeSeries.jl
  • Spatial statistics
    • Kriging
  • Optimization JuliaOpt
  • Database access
@johnmyleswhite
Copy link
Author

Moved discussion to JuliaStats/Roadmap.jl#1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment