This post follows the R : Exploring Data for Machine Learning Modeling post, exploring linear model in the context of machine learning.
We'll still use the Wage dataset from the ISLR package.
This dataset reports wage and other data (age, education, jobclass, etc.) for a group of 3000 male workers in …
These are my notes on the Practical Machine Learning course (Week2: Plotting Predictors - Tutorial).
When exploring data for Machine Learning, we're looking for:
We'll use the Wage dataset …
more ...The Central Limit Theorem states that the distribution of sample statistics (e.g. mean) is approximatively normal, regardless of the underlying distribution, with mean = \(\mu\) and variance = \(\sigma^2\) ...
more ...A river crossing puzzle is a type of transport puzzle in which the object is to carry items from one river bank to another. The difficulty of the puzzle may arise from restrictions on which or how many items can be transported at the same time, or from which or …
more ...This is my note on swirl course Regression Model : Overfitting and Underfitting.
A variance inflation factor (VIF) is a ratio of estimated variances, the variance due to including the ith regressor, divided by that due to including a corresponding ideal regressor which is uncorrelated with the others. VIF is …
more ...Exploring multivariable regression with the hunger dataset
more ...Kanban in the context of software development mean a visual process-management system that tells what to produce, when to produce it, and how much to produce - inspired by the Toyota Production System and by Lean manufacturing.
Kanban board core properties are:
Plotting the earthquakes of the last 30 months with R and the the National Earthquake Hazards Reduction Program (NEHRP) feed ...
more ...A basic git workflow is the feature branch workflow. All feature (or task, or story) developments are taken place in a dedicated branch (the feature branch).
The stories/features branch exist as long as the feature is in development.
At the end of the development, the branch is usually submitted …