Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 1.78 KB

README.md

File metadata and controls

54 lines (32 loc) · 1.78 KB

Algorithms

Some of the algorithms developed in this repository are from the courses of the Masters degree in statistics for data science at the uc3m and some others from the book Machine Learning from scratch of the author Jason Brownlee. This book offers algorithms in raw python code with the aim of learning the mathematics behind the algorithms. There are some other algorithms from leet code and finally, own creations.

The aim of this repository is not to offer the algorithms to users, it is pure didactical for myself, practice different programming languages such as C++, R, Python and Julia.

(Currently building the repository)

List of folders:

  • Leetcode algorithms:

  • Data Structures algorithms:

    • Power of square matrix (R, Python)
    • Split dataframe function (R)
  • Machine Learning Supervised algorithms:

  • Machine Learning Unsupervised algorithms:

    • K-means algorithm (R, Python)
    • Knn algorithm (R, Python)
  • Neural Networks algorithms:

    • Multilayer perceptron algorihm (R, Python)
  • Kernel Density algorithms:

    • Moving Histogram (R)
  • Statistical learning algorihtms:

    • Simple Linear regression model (R, Python)
    • Multivariate linear regression model (R, Python)
    • Logistic regression model (R)
    • Finite-state Discrete Markov Chain n_states vector (R)
    • Finite-state Discrete Markov Chain n_step vector (R)
  • Bayesian Algorithms:

    • Gibbs sampling algorithm (R, Python)
    • MCMC Metropolis algorithm (R, Python)
    • MCMC Metropolis-Hastings algorithm (R, Python)
  • Other algorithms (own creations):

    • Godel, Escher and Bach, MIMU problem algorithm (R)
    • Roman numbers algorithm, get the roman given positive integer (Python)
    • Triangular unordered matrix (R)
    • Fibonacci series algorithm, get the nth Fibonacci number given its position (Python)