j-devlog
KO
~/nav

// categories

// tags

← /tags

$ grep --tag

#Python

// 10 posts found

[MMD]··18min

Probability & Statistics Coding Assignments: Building ML Statistical Tools in Python

Bayesian updates, distribution simulation, CLT verification, MLE/MAP implementation, confidence intervals, hypothesis testing, and a full A/B test pipeline — implementing probability & statistics chapters 1–4 in code.

#Probability#Statistics#Python#NumPy#scipy
[MMD]··15min

Linear Algebra Coding Practice: Implementing Matrix Operations with NumPy

A hands-on coding practice for implementing matrix operations, Gaussian elimination, eigendecomposition, and PCA from scratch using NumPy. Each problem includes step-by-step hints and complete solution code.

#Linear Algebra#Python#NumPy#Coding Assignment#Machine Learning
[MMD]··16min

Calculus Coding Assignments: Implementing Optimization Algorithms with NumPy

Hands-on coding assignments implementing numerical differentiation, gradient descent, perceptron backpropagation, and Newton's method from scratch with NumPy. Each problem includes step-by-step hints and complete solution code.

#Calculus#Python#NumPy#Coding Assignment#Gradient Descent
[데이터사이언스]··13min

Statistics Fundamentals Chapter 7: Unsupervised Learning

A hands-on overview of unsupervised learning essentials — PCA, K-Means, hierarchical clustering, Gaussian Mixture Models, and feature scaling — all with code examples.

#Statistics#Unsupervised Learning#PCA#Clustering#Python
[데이터사이언스]··13min

Statistics Fundamentals Chapter 6: Statistical Machine Learning

A hands-on walkthrough of KNN, decision trees, random forests, AdaBoost, and gradient boosting — the core concepts behind tree-based ensemble models, complete with code examples.

#Statistics#Machine Learning#Random Forest#Boosting#Python
[데이터사이언스]··13min

Statistics Fundamentals Chapter 5: Classification

A hands-on guide to classification algorithms — covering Naive Bayes, discriminant analysis, logistic regression, confusion matrices, ROC/AUC, and techniques for handling imbalanced data, all with code examples.

#Statistics#Classification#Logistic Regression#Machine Learning#Python
[데이터사이언스]··13min

Statistics Fundamentals Chapter 4: Regression and Prediction

A code-driven walkthrough of regression essentials: simple and multiple linear regression, residual diagnostics, categorical variable encoding, and polynomial/spline regression.

#Statistics#Regression Analysis#Machine Learning#Python
[데이터사이언스]··12min

Statistics Fundamentals Chapter 3: Statistical Experiments and Significance Testing

A comprehensive guide to statistical experiments — covering A/B testing, hypothesis testing, p-values, t-tests, ANOVA, chi-square, and multi-armed bandits, with code examples throughout.

#Statistics#Hypothesis Testing#A/B Test#Python
[데이터사이언스]··10min

Statistics Fundamentals Chapter 2: Data and Sampling Distributions

A code-driven walkthrough of the core concepts in sampling distributions: random sampling and bias, bootstrap, confidence intervals, the normal distribution, t-distribution, and binomial and Poisson distributions.

#Statistics#Data Analysis#Sampling Distribution#Python
[데이터사이언스]··8min

Statistics Fundamentals Ch.1: Data Types, Location & Variability Estimation

A practical overview of data types (continuous, discrete, categorical, etc.), location estimation (mean, median), and variability estimation (variance, standard deviation), with code examples throughout.

#Statistics#Data Analysis#pandas#Python