Month: November 2019

End-to-End Machine Learning: IRIS Flower Prediction in R

End-to-End Machine Learning: IRIS Flower Prediction in R IRIS flower prediction is a machine learning task that involves identifying the type of IRIS flower based on certain characteristics such as the flower’s petal length and width, and sepal length and width. There are three types of IRIS flowers: Setosa, Versicolor, and Virginica, and being able …

End-to-End Machine Learning: Glass Type Prediction in R

End-to-End Machine Learning: Glass Type Prediction in R Glass type prediction is a machine learning task that involves identifying the type of glass based on certain characteristics such as the glass’s refractive index, sodium content, and magnesium content. Different types of glass have different properties and uses, for example, tempered glass is used for car …

End-to-End Machine Learning: Sonar Prediction in R

End-to-End Machine Learning: Sonar Prediction in R Sonar prediction is a machine learning task that involves identifying whether an underwater object detected by sonar is a rock or a metal cylinder based on certain characteristics such as the signal’s frequency and signal strength. Sonar is used by ships and submarines to navigate and detect objects …

End-to-End Machine Learning: Ionosphere Prediction in R

End-to-End Machine Learning: Ionosphere Prediction in R Ionosphere prediction is a machine learning task that involves identifying whether an ionosphere signal is “good” or “bad” based on certain characteristics such as the signal’s frequency and signal strength. The ionosphere is a region of the upper atmosphere that is affected by solar and cosmic radiation, and …

End-to-End Machine Learning: Diabetes Prediction in R

End-to-End Machine Learning: Diabetes Prediction in R Diabetes is a chronic disease that affects millions of people worldwide and early detection is crucial for managing the disease and preventing complications. Machine learning algorithms can be used to predict whether a patient has diabetes based on certain characteristics such as blood pressure, glucose levels, and body …

End-to-End Machine Learning: crash course in R

  End-to-End Machine Learning: crash course in R In this Applied Machine Learning & Data Science Recipe (Jupyter Notebook), the reader will find the practical use of applied machine learning and data science in R programming: End-to-End Machine Learning: crash course in R.   End-to-End Machine Learning: crash course in R   Fund SETScholars to …

End-to-End Machine Learning: Breast Cancer Prediction in R

End-to-End Machine Learning: Breast Cancer Prediction in R Breast cancer is a disease that affects millions of women worldwide and early detection is crucial for successful treatment. Machine learning algorithms can be used to predict whether a patient has breast cancer based on certain characteristics, such as the size and shape of a tumor. In …

End-to-End Machine Learning: stacking in R

End-to-End Machine Learning: stacking in R Stacking is a technique used in machine learning to improve the performance of a model by combining the predictions of multiple models. It works by training multiple models on the same dataset, then using their predictions as input to a new model called meta-model, which makes the final prediction. …

End-to-End Machine Learning: blending in R

End-to-End Machine Learning: blending in R Blending is a technique used in machine learning to improve the performance of a model by combining the predictions of multiple models. It works by training multiple models on the same dataset, and then using their predictions to make the final prediction. The idea behind blending is that different …

End-to-End Machine Learning: bagging in R

End-to-End Machine Learning: bagging in R Bagging, short for bootstrap aggregating, is a technique used in machine learning to improve the performance of a model by averaging the results of multiple models. It works by training multiple versions of the same model on different subsets of the data, and then averaging their predictions. In R, …