Oreilly - R Machine Learning solutions - 9781787282063
Oreilly - R Machine Learning solutions
by Yu-Wei Chiu | Released November 2016 | ISBN: 9781787282063


Build powerful predictive models in R About This VideoApply R to simple predictive modeling with short and simple codeUse machine learning to solve problems ranging from small to big dataBuild a training and testing dataset from the churn dataset, applying different classification methodsIn DetailR is a statistical programming language that provides impressive tools to analyze data and create high-level graphics. This video course will take you from very basics of R to creating insightful machine learning models with R. You will start with setting up the environment and then perform data ETL in R.Data exploration examples are provided that demonstrate how powerful data visualization and machine learning is in discovering hidden relationship. You will then dive into important machine learning topics, including data classification, regression, clustering, association rule mining, and dimensionality reduction. Show and hide more
  1. Chapter 1 : Getting Started with R
    • The Course Overview 00:04:38
    • Downloading and Installing R 00:06:10
    • Downloading and Installing RStudio 00:03:10
    • Installing and Loading Packages 00:05:46
    • Reading and Writing Data 00:05:54
    • Using R to Manipulate Data 00:05:47
    • Applying Basic Statistics 00:04:47
    • Visualizing Data 00:03:33
    • Getting a Dataset for Machine Learning 00:02:39
  2. Chapter 2 : Data Exploration with RMS Titanic
    • Reading a Titanic Dataset from a CSV File 00:08:36
    • Converting Types on Character Variables 00:03:05
    • Detecting Missing Values 00:03:19
    • Missing values affect the inference of a dataset. Thus it is important to detect them. 00:04:30
    • Exploring and Visualizing Data 00:04:25
    • Predicting Passenger Survival with a Decision Tree 00:03:59
    • Validating the Power of Prediction with a Confusion Matrix 00:02:08
    • Assessing performance with the ROC curve 00:02:33
  3. Chapter 3 : R and Statistics
    • Understanding Data Sampling in R 00:03:31
    • Operating a Probability Distribution in R 00:05:42
    • Working with Univariate Descriptive Statistics in R 00:05:10
    • Performing Correlations and Multivariate Analysis 00:03:02
    • Operating Linear Regression and Multivariate Analysis 00:03:25
    • Conducting an Exact Binomial Test 00:03:48
    • Performing Student's t-test 00:03:13
    • Performing the Kolmogorov-Smirnov Test 00:04:43
    • Understanding the Wilcoxon Rank Sum and Signed Rank Test 00:02:04
    • Working with Pearson's Chi-Squared Test 00:05:09
    • Conducting a One-Way ANOVA 00:04:16
    • Performing a Two-Way ANOVA 00:04:02
  4. Chapter 4 : Understanding Regression Analysis
    • Fitting a Linear Regression Model with lm 00:04:53
    • Summarizing Linear Model Fits 00:05:21
    • Using Linear Regression to Predict Unknown Values 00:02:51
    • Generating a Diagnostic Plot of a Fitted Model 00:03:58
    • Fitting a Polynomial Regression Model with lm 00:02:16
    • Fitting a Robust Linear Regression Model with rlm 00:02:16
    • Studying a case of linear regression on SLID data 00:06:39
    • Reducing Dimensions with SVD 00:02:11
    • Applying the Poisson model for Generalized Linear Regression 00:01:34
    • Applying the Binomial Model for Generalized Linear Regression 00:02:02
    • Fitting a Generalized Additive Model to Data 00:03:14
    • Visualizing a Generalized Additive Model 00:01:27
    • Diagnosing a Generalized Additive Model 00:03:38
  5. Chapter 5 : Classification – Tree, Lazy, and Probabilistic
    • Preparing the Training and Testing Datasets 00:03:45
    • Building a Classification Model with Recursive Partitioning Trees 00:06:10
    • Visualizing a Recursive Partitioning Tree 00:03:04
    • Measuring the Prediction Performance of a Recursive Partitioning Tree 00:02:49
    • Pruning a Recursive Partitioning Tree 00:02:38
    • Building a Classification Model with a Conditional Inference Tree 00:01:56
    • Visualizing a Conditional Inference Tree 00:02:38
    • Measuring the Prediction Performance of a Conditional Inference Tree 00:02:10
    • Classifying Data with the K-Nearest Neighbor Classifier 00:05:31
    • Classifying Data with Logistic Regression 00:04:38
    • Classifying data with the Naïve Bayes Classifier 00:06:16
  6. Chapter 6 : Neural Network and SVM
    • Classifying Data with a Support Vector Machine 00:05:58
    • Choosing the Cost of an SVM 00:02:57
    • Visualizing an SVM Fit 00:03:33
    • Predicting Labels Based on a Model Trained by an SVM 00:03:49
    • Tuning an SVM 00:02:48
    • Training a Neural Network with neuralnet 00:04:08
    • Visualizing a Neural Network Trained by neuralnet 00:02:22
    • Predicting Labels based on a Model Trained by neuralnet 00:03:07
    • Training a Neural Network with nnet 00:02:46
    • Predicting labels based on a model trained by nnet 00:02:49
  7. Chapter 7 : Model Evaluation
    • Estimating Model Performance with k-fold Cross Validation 00:03:42
    • Performing Cross Validation with the e1071 Package 00:03:22
    • Performing Cross Validation with the caret Package 00:02:59
    • Ranking the Variable Importance with the caret Package 00:02:21
    • Ranking the Variable Importance with the rminer Package 00:02:30
    • Finding Highly Correlated Features with the caret Package 00:02:13
    • Selecting Features Using the Caret Package 00:04:59
    • Measuring the Performance of the Regression Model 00:03:58
    • Measuring Prediction Performance with a Confusion Matrix 00:02:07
    • Measuring Prediction Performance Using ROCR 00:02:46
    • Comparing an ROC Curve Using the Caret Package 00:03:44
    • Measuring Performance Differences between Models with the caret Package 00:03:41
  8. Chapter 8 : Ensemble Learning
    • Classifying Data with the Bagging Method 00:07:53
    • Performing Cross Validation with the Bagging Method 00:01:56
    • Classifying Data with the Boosting Method 00:06:05
    • Performing Cross Validation with the Boosting Method 00:02:06
    • Classifying Data with Gradient Boosting 00:07:10
    • Calculating the Margins of a Classifier 00:05:30
    • Calculating the Error Evolution of the Ensemble Method 00:02:19
    • Classifying Data with Random Forest 00:07:02
    • Estimating the Prediction Errors of Different Classifiers 00:04:35
  9. Chapter 9 : Clustering
    • Clustering Data with Hierarchical Clustering 00:08:40
    • Cutting Trees into Clusters 00:03:30
    • Clustering Data with the k-Means Method 00:04:10
    • Drawing a Bivariate Cluster Plot 00:03:32
    • Comparing Clustering Methods 00:04:16
    • Extracting Silhouette Information from Clustering 00:02:40
    • Obtaining the Optimum Number of Clusters for k-Means 00:02:49
    • Clustering Data with the Density-Based Method 00:06:42
    • Clustering Data with the Model-Based Method 00:04:38
    • Visualizing a Dissimilarity Matrix 00:03:24
    • Validating Clusters Externally 00:04:12
  10. Chapter 10 : Association Analysis and Sequence Mining
    • Transforming Data into Transactions 00:03:35
    • Displaying Transactions and Associations 00:02:14
    • Mining Associations with the Apriori Rule 00:07:24
    • Pruning Redundant Rules 00:02:26
    • Visualizing Association Rules 00:05:07
    • Mining Frequent Itemsets with Eclat 00:03:36
    • Creating Transactions with Temporal Information 00:02:41
    • Mining Frequent Sequential Patterns with cSPADE 00:04:16
  11. Chapter 11 : Dimension Reduction
    • Performing Feature Selection with FSelector 00:07:38
    • Performing Dimension Reduction with PCA 00:07:19
    • Determining the Number of Principal Components Using the Scree Test 00:03:34
    • Determining the Number of Principal Components Using the Kaiser Method 00:02:05
    • Visualizing Multivariate Data Using biplot 00:03:17
    • Performing Dimension Reduction with MDS 00:05:38
    • Reducing Dimensions with SVD 00:03:19
    • Compressing Images with SVD 00:03:05
    • Performing Nonlinear Dimension Reduction with ISOMAP 00:04:34
    • Performing Nonlinear Dimension Reduction with Local Linear Embedding 00:04:55
  12. Chapter 12 : Big Data Analysis with R and Hadoop
    • Preparing the RHadoop Environment 00:05:36
    • Installing rmr2 00:03:53
    • Installing rhdfs 00:04:15
    • Operating HDFS with rhdfs 00:05:47
    • Implementing a Word Count Problem with RHadoop 00:05:27
    • Comparing the Performance between an R MapReduce Program and a Standard R Program 00:05:03
    • Testing and Debugging the rmr2 Program 00:03:49
    • Installing plyrmr 00:03:12
    • Manipulating Data with plyrmr 00:03:52
    • Conducting Machine Learning with RHadoop 00:04:39
    • Configuring RHadoop Clusters on Amazon EMR 00:05:28
  13. Show and hide more

    Oreilly - R Machine Learning solutions


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss