SlideShare una empresa de Scribd logo
1 de 8
Descargar para leer sin conexión
© 2014 Persontyle Ltd. All rights reserved.
[Hands-on Introduction of
Supervised Machine Learning Methods]
DURATION – 2 DAY
MACHINE LEARNING
BASICS WITH R
R logo is trademark of the R Foundation, from http://www.r-project.org
www.persontyle.com© 2014 Persontyle Ltd. All rights reserved.
R logo is trademark of the R Foundation, from http://www.r-project.org
Data generated through our activities captures plethora of information about
our identity, likes and dislikes etc. This information has tremendous value in
every aspect of human life. Programming computers to unravel this hidden
information is what Machine Learning is all about. It is the art and science of
scientifically deriving insights, patterns and predictions from data.
Though it has been an area of active research for over 50 years, Machine
Learning is currently undergoing a renaissance driven by Moore's law and the
rise of big data. Large private and public investment in the area has given us
self-driving cars, practical speech recognition, effective web search, and a
vastly improved understanding of the human genome. Computer based
Machine Learning algorithms now outperform humans on tasks such as
handwritten digit recognition, traffic sign recognition, and even on some
complex reasoning tasks as demonstrated by IBM's Watson winning Jeopardy
<MACHINE LEARNING>
“The field of machine learning is concerned with the
question of how to construct computer programs that
automatically improve with experience.” - Tom Mitchell
Machine Learning models and programs automatically make decisions from data
in order to achieve some goal or requirement. Machine learning models matter to
the world. Because they are;
#EFFICIENT
Machine Learning models predict and detect partners faster than any other
manual program or method.
#EFFECTIVE
Machine Learning models can do better job than humans when analysing and
predicting large scale and streaming data sets (big data).
#SCALE
Machine Learning models can provide solutions to large data problems that
traditional systems can not solve.
www.persontyle.com© 2014 Persontyle Ltd. All rights reserved.
R logo is trademark of the R Foundation, from http://www.r-project.org
 Machine perception
 Computer vision, including object
recognition
 Natural language processing
 Pattern recognition
 Search engines
 Medical diagnosis
 Bioinformatics
 Brain-machine interfaces
 Detecting credit card fraud
 Stock market analysis
 Classifying DNA sequences
 Sentiment analysis
 Affective computing
 Information retrieval
 Recommender systems
MACHINE LEARNING CAN APPEAR IN MANY GUISES
Examples in the real world include handwritten recognition, weather
prediction, fraud detection, search, facial recognition, and so forth are all
examples of machine learning in the wild. Applications for Machine
Learning include:
“Over the past two decades Machine Learning has become one of the
mainstays of information technology and with that, a rather central, albeit
usually hidden, part of our life. With the ever increasing amounts of data
becoming available there is good reason to believe that smart data analysis
will become even more pervasive as a necessary ingredient for
technological progress.”
DR. ALEXANDER J. SMOLA, PROFESSOR, CARNEGIE MELLON UNIVERSITY
www.persontyle.com© 2014 Persontyle Ltd. All rights reserved.
R logo is trademark of the R Foundation, from http://www.r-project.org
This course is meant to be a fast-paced, hands-on introduction to Machine
Learning using R. The course will be focusing mainly on basics of Machine
Learning methods and practical implementation of these methods to solve
real-world problems. This course aims to develop basic understanding of
supervised learning methods, through the use of the R programming
platform. It describes the different types of learning and the two main
categories of their applications: Classification and Regression. With a focus
on the former, it takes a close look at typical Machine Learning techniques
and how they apply on datasets akin to those encountered in the real world.
Our goal is to give you the basic skills that you need to understand
supervised Machine Learning algorithms and models, and interpret their
output, which is important for solving a range of data science problems.
Without getting too much into the mathematics of Machine Learning, this
course dwells on the ideas and principles of it, along with the two main
methods that all Machine Learning practitioners use.
With theory and hands-on sessions intertwined, the course illustrates the
usefulness of Machine Learning and how you can learn it effectively without
losing sight of its elegance and value. Apart from the Classification
techniques, you will learn about how to validate any classifier's
performance, when to use what, and how the new innovations come about.
MACHINE LEARNING
BASICS WITH R
“The ability to take data - to be able to understand it, to process
it, to extract value from it, to visualize it, to communicate it -
that’s going to be a hugely important skill in the next decades.”
Hal Varian
WHAT WILL YOU LEARN?
In this course you will learn, among other things:
+ What Machine Learning entails and why it is important
+ The different types of Learning, especially Supervised
Learning
+ How Classification and Regression fit in Machine Learning
+ Understand types of classifiers
+ Applied details of following algorithms:
+ Decision Tree and basic overview of Random Forests
+ k Nearest Neighbour (kNN) and a few of its variants
+ Bayes Classifier
+ How to use these algorithms in a variety of benchmark
datasets
+ How to fine-tune these algorithms for better performance
+ Validation metrics for a classifier's performance (ROC
curve, Accuracy Rate, F1-metric)
+ The various libraries in R for these types of classifiers
+ Which algorithm to choose based on the data you have
+ Data transformation
www.persontyle.com© 2014 Persontyle Ltd. All rights reserved.
R logo is trademark of the R Foundation, from http://www.r-project.org
MACHINE LEARNING
BASICS WITH R
PREREQUISITES
Knowledge of R programming language and familiarity with linear algebra. Basic
familiarity with statistics and probability theory is recommended.
* If you don't know R then first attend the Getting Started with R and Data
Analysis workshop.
SCHEDULE
www.persontyle.com© 2014 Persontyle Ltd. All rights reserved.
R logo is trademark of the R Foundation, from http://www.r-project.org
MACHINE LEARNING
BASICS WITH R
Day 1
Time Topic/Activity
09:00-10:00 What is Machine Learning (ML) and why is it important? Examples of applications
10:00-11:00 Different types of learning and where they are used
11:00-11:15 Coffee Break
11:15-12:00 Overview of Classification and Regression
12:00-13:00 Using R for Machine Learning
13:00-13:30 Lunch Break
13:30-14:15 LAB: Practical examples (using R): Boston Housing Prices (Regression)
14:15-14:45 Classification Learning
14:45-15:00 Coffee Break
15:00-16:00 Decision Tree Learning (ID3, C4.5, and C5.0)
16:00-16:45 LAB: Decision Tree example using R: Japanese Credit Screening (Classification)
16:45-17:00 Coffee Break
17:00-17:30 Boosting method for decision trees
17:30-18:30 LAB: Using the C5.0 Decision Tree (Credit Card dataset)
Day 2
Time Topic/Activity
09:30-10:00 Instance-based learning - the intuitive approach to ML
10:00-11:00 kNN algorithm. kNN bias.
11:00-11:30 Overview of some kNN variants
11:30-11:45 Coffee Break
11:45-12:15 Curse of Dimensionality
12:15-13:00 Guest Speaker
13:00-13:30 Lunch Break
13:30-14:00 Data transformation and normalization
14:00-14:45 LAB: Using kNN for Credit Card dataset
14:45-15:15 Bayes rule and Bayesian Learning. Dealing with noisy data
15:15-15:30 Coffee Break
15:30-16:00 Bayesian Learning in action / Bayesian Classification
16:00-16:45 LAB: Using Bayes classifier for Credit Card dataset
16:45-17:00 Pros and Cons of methods covered
17:00-17:15 Coffee Break
17:15-17:45 Validating results - ROC curve, Accuracy Rate, F1 metric, Confusion Table,
Precision, Recall
17:45-18:30 LAB: creating confusion table and basic validation metrics for all previous drills
(adult census data)
www.persontyle.com© 2014 Persontyle Ltd. All rights reserved.
R logo is trademark of the R Foundation, from http://www.r-project.org
Persontyle trainers are passionate about meeting each participants learning
needs. They have been chosen both for their extensive practical Data
Science and Machine Learning experience and for their ability to educate
and interact with natural empathy. All of our trainers have worked on a
variety of data science and Machine Learning projects. They share their
academic knowledge and real-world experience and each individual adds
their own unique perspective to the course. Our trainers present in a style
that is informal, entertaining and highly interactive.
Guest Speakers
Business leaders, Machine Learning practitioners, and academic
researchers covering use cases, case studies and sharing practical
experience of applying Data Science and Machine Learning in their
organizations.
COURSE INSTRUCTORS
“A breakthrough in Machine Learning
would be worth ten Microsofts”
BILL GATES, CHAIRMAN, MICROSOFT
WHO SHOULD ATTEND
Anyone interested in learning and applying supervised machine learning
methods and R to solve real-world data problems. Ideal for people
interested in pursuing career in data science.
This hands-on workshop is aimed at business and technology professionals,
Developer, Architect, Manager, Data Analyst, BI Developer/Architect, QA,
Performance Engineers, Sales, Pre Sales and Marketing, Project Manager,
Public Services, Teaching Staff and all those who already have some basic
competence in statistics but wish to begin using R for machine learning for
the first time.
MACHINE LEARNING
BASICS WITH R
For corporate bookings or to organize on-site training email hello@persontyle.com or
call now +44 (0)20 3239 3141
Register Now
RETURN ON INVESTMENT (ROI)
CONVINCE YOUR BOSS
The advent of the data driven connected era means that analyzing massive
scale, messy, noisy, and unstructured data is going to increasingly form part
of everyone's work.
The School of Data Science learning programs provide a unique investment
opportunity that pay’s for itself many times over.
"For the best return on your money, pour your
purse into your head."
World-class
Instructors
Benjamin Franklin
Develop Practical
Data Science Skills
Real World
Industry Use Cases
Short Courses For
Time Convenience
Value For
Money
THE SCHOOL OF DATA SCIENCE
The School of Data Science, a project of Persontyle, specializes in designing and delivering
structured, relevant and practical learning experiences for all of us to understand data science in
simple human terms.
Follow us on Twitter @schooltds
Like us on Facebook
Get in touch! hello@personyyle.com
Limited seats. We encourage you to register as soon as you can.
www.persontyle.com/school
MACHINE LEARNING
BASICS WITH R

Más contenido relacionado

La actualidad más candente

Barga ACM DEBS 2013 Keynote
Barga ACM DEBS 2013 KeynoteBarga ACM DEBS 2013 Keynote
Barga ACM DEBS 2013 KeynoteRoger Barga
 
Application of predictive analytics
Application of predictive analyticsApplication of predictive analytics
Application of predictive analyticsPrasad Narasimhan
 
Predictive Analytics - An Overview
Predictive Analytics - An OverviewPredictive Analytics - An Overview
Predictive Analytics - An OverviewMachinePulse
 
1. Data Analytics-introduction
1. Data Analytics-introduction1. Data Analytics-introduction
1. Data Analytics-introductionkrishna singh
 
System Dynamics, Analytics & Big Data (16th Conference of the UK Chapter of t...
System Dynamics, Analytics & Big Data (16th Conference of the UK Chapter of t...System Dynamics, Analytics & Big Data (16th Conference of the UK Chapter of t...
System Dynamics, Analytics & Big Data (16th Conference of the UK Chapter of t...Michael Mortenson
 
Predictive analytics and big data tutorial
Predictive analytics and big data tutorial Predictive analytics and big data tutorial
Predictive analytics and big data tutorial Benjamin Taylor
 
Understand the Demand of Analyst Opportunity in U.S
Understand the Demand of Analyst Opportunity in U.SUnderstand the Demand of Analyst Opportunity in U.S
Understand the Demand of Analyst Opportunity in U.SJiaming Zhang
 
Data Science - Part I - Sustaining Predictive Analytics Capabilities
Data Science - Part I - Sustaining Predictive Analytics CapabilitiesData Science - Part I - Sustaining Predictive Analytics Capabilities
Data Science - Part I - Sustaining Predictive Analytics CapabilitiesDerek Kane
 
Data Scientist Toolbox
Data Scientist ToolboxData Scientist Toolbox
Data Scientist ToolboxAndrei Savu
 
Data Science Applications | Data Science For Beginners | Data Science Trainin...
Data Science Applications | Data Science For Beginners | Data Science Trainin...Data Science Applications | Data Science For Beginners | Data Science Trainin...
Data Science Applications | Data Science For Beginners | Data Science Trainin...Edureka!
 
Pistoia Alliance Demystifying AI & ML part 2
Pistoia Alliance Demystifying AI & ML part 2Pistoia Alliance Demystifying AI & ML part 2
Pistoia Alliance Demystifying AI & ML part 2Pistoia Alliance
 
Business Intelligence & Predictive Analytic by Prof. Lili Saghafi
Business Intelligence & Predictive Analytic by Prof. Lili SaghafiBusiness Intelligence & Predictive Analytic by Prof. Lili Saghafi
Business Intelligence & Predictive Analytic by Prof. Lili SaghafiProfessor Lili Saghafi
 
Introduction to Data Analytics
Introduction to Data AnalyticsIntroduction to Data Analytics
Introduction to Data AnalyticsUtkarsh Sharma
 

La actualidad más candente (20)

Barga ACM DEBS 2013 Keynote
Barga ACM DEBS 2013 KeynoteBarga ACM DEBS 2013 Keynote
Barga ACM DEBS 2013 Keynote
 
Application of predictive analytics
Application of predictive analyticsApplication of predictive analytics
Application of predictive analytics
 
Data Analytics
Data AnalyticsData Analytics
Data Analytics
 
Predictive Analytics - An Overview
Predictive Analytics - An OverviewPredictive Analytics - An Overview
Predictive Analytics - An Overview
 
1. Data Analytics-introduction
1. Data Analytics-introduction1. Data Analytics-introduction
1. Data Analytics-introduction
 
Predictive analytics 2025_br
Predictive analytics 2025_brPredictive analytics 2025_br
Predictive analytics 2025_br
 
System Dynamics, Analytics & Big Data (16th Conference of the UK Chapter of t...
System Dynamics, Analytics & Big Data (16th Conference of the UK Chapter of t...System Dynamics, Analytics & Big Data (16th Conference of the UK Chapter of t...
System Dynamics, Analytics & Big Data (16th Conference of the UK Chapter of t...
 
Predictive analytics
Predictive analytics Predictive analytics
Predictive analytics
 
Predictive analytics and big data tutorial
Predictive analytics and big data tutorial Predictive analytics and big data tutorial
Predictive analytics and big data tutorial
 
Data Analytics: From Basic Skills to Executive Decision-Making
Data Analytics: From Basic Skills to Executive Decision-MakingData Analytics: From Basic Skills to Executive Decision-Making
Data Analytics: From Basic Skills to Executive Decision-Making
 
Understand the Demand of Analyst Opportunity in U.S
Understand the Demand of Analyst Opportunity in U.SUnderstand the Demand of Analyst Opportunity in U.S
Understand the Demand of Analyst Opportunity in U.S
 
Future of datascience
Future of datascienceFuture of datascience
Future of datascience
 
Data Scientist
Data ScientistData Scientist
Data Scientist
 
Data Science - Part I - Sustaining Predictive Analytics Capabilities
Data Science - Part I - Sustaining Predictive Analytics CapabilitiesData Science - Part I - Sustaining Predictive Analytics Capabilities
Data Science - Part I - Sustaining Predictive Analytics Capabilities
 
Data Scientist Toolbox
Data Scientist ToolboxData Scientist Toolbox
Data Scientist Toolbox
 
Data Science Applications | Data Science For Beginners | Data Science Trainin...
Data Science Applications | Data Science For Beginners | Data Science Trainin...Data Science Applications | Data Science For Beginners | Data Science Trainin...
Data Science Applications | Data Science For Beginners | Data Science Trainin...
 
Vikrant data scientist
Vikrant data scientistVikrant data scientist
Vikrant data scientist
 
Pistoia Alliance Demystifying AI & ML part 2
Pistoia Alliance Demystifying AI & ML part 2Pistoia Alliance Demystifying AI & ML part 2
Pistoia Alliance Demystifying AI & ML part 2
 
Business Intelligence & Predictive Analytic by Prof. Lili Saghafi
Business Intelligence & Predictive Analytic by Prof. Lili SaghafiBusiness Intelligence & Predictive Analytic by Prof. Lili Saghafi
Business Intelligence & Predictive Analytic by Prof. Lili Saghafi
 
Introduction to Data Analytics
Introduction to Data AnalyticsIntroduction to Data Analytics
Introduction to Data Analytics
 

Destacado

Time Series Analysis and Mining with R
Time Series Analysis and Mining with RTime Series Analysis and Mining with R
Time Series Analysis and Mining with RYanchang Zhao
 
Hive function-cheat-sheet
Hive function-cheat-sheetHive function-cheat-sheet
Hive function-cheat-sheetDr. Volkan OBAN
 
2017.03.13 Financialisation as a Strategic Action Field: An Historically Info...
2017.03.13 Financialisation as a Strategic Action Field: An Historically Info...2017.03.13 Financialisation as a Strategic Action Field: An Historically Info...
2017.03.13 Financialisation as a Strategic Action Field: An Historically Info...NUI Galway
 
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...NUI Galway
 
Teaching and Learning Strategies
Teaching and Learning StrategiesTeaching and Learning Strategies
Teaching and Learning StrategiesVienna Parreno
 
[Avril loveless, viv_ellis]_ict,_pedagogy_and_the_(book_fi.org)
[Avril loveless, viv_ellis]_ict,_pedagogy_and_the_(book_fi.org)[Avril loveless, viv_ellis]_ict,_pedagogy_and_the_(book_fi.org)
[Avril loveless, viv_ellis]_ict,_pedagogy_and_the_(book_fi.org)Daryanto Aiz
 
Learners and Learning: Section Two: Learning to know what we don’t know
Learners and Learning: Section Two: Learning to know what we don’t knowLearners and Learning: Section Two: Learning to know what we don’t know
Learners and Learning: Section Two: Learning to know what we don’t knowSaide OER Africa
 
Vol6_Issue6_September2016
Vol6_Issue6_September2016Vol6_Issue6_September2016
Vol6_Issue6_September2016NatashaPDA
 
Using Gradient Descent for Optimization and Learning
Using Gradient Descent for Optimization and LearningUsing Gradient Descent for Optimization and Learning
Using Gradient Descent for Optimization and LearningDr. Volkan OBAN
 
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...NUI Galway
 
Global savings glut prabhat patnaik
Global savings glut prabhat patnaikGlobal savings glut prabhat patnaik
Global savings glut prabhat patnaikns_solanki
 
Arima model (time series)
Arima model (time series)Arima model (time series)
Arima model (time series)Kumar P
 

Destacado (20)

INTRODUCTION TO TIME SERIES ANALYSIS WITH “R” JUNE 2014
INTRODUCTION TO TIME SERIES ANALYSIS WITH “R” JUNE 2014INTRODUCTION TO TIME SERIES ANALYSIS WITH “R” JUNE 2014
INTRODUCTION TO TIME SERIES ANALYSIS WITH “R” JUNE 2014
 
Timeseries Analysis with R
Timeseries Analysis with RTimeseries Analysis with R
Timeseries Analysis with R
 
Time Series Analysis and Mining with R
Time Series Analysis and Mining with RTime Series Analysis and Mining with R
Time Series Analysis and Mining with R
 
R-Shiny Cheat sheet
R-Shiny Cheat sheetR-Shiny Cheat sheet
R-Shiny Cheat sheet
 
Hive function-cheat-sheet
Hive function-cheat-sheetHive function-cheat-sheet
Hive function-cheat-sheet
 
2017.03.13 Financialisation as a Strategic Action Field: An Historically Info...
2017.03.13 Financialisation as a Strategic Action Field: An Historically Info...2017.03.13 Financialisation as a Strategic Action Field: An Historically Info...
2017.03.13 Financialisation as a Strategic Action Field: An Historically Info...
 
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...
 
Teaching and Learning Strategies
Teaching and Learning StrategiesTeaching and Learning Strategies
Teaching and Learning Strategies
 
[Avril loveless, viv_ellis]_ict,_pedagogy_and_the_(book_fi.org)
[Avril loveless, viv_ellis]_ict,_pedagogy_and_the_(book_fi.org)[Avril loveless, viv_ellis]_ict,_pedagogy_and_the_(book_fi.org)
[Avril loveless, viv_ellis]_ict,_pedagogy_and_the_(book_fi.org)
 
Learners and Learning: Section Two: Learning to know what we don’t know
Learners and Learning: Section Two: Learning to know what we don’t knowLearners and Learning: Section Two: Learning to know what we don’t know
Learners and Learning: Section Two: Learning to know what we don’t know
 
Vol6_Issue6_September2016
Vol6_Issue6_September2016Vol6_Issue6_September2016
Vol6_Issue6_September2016
 
Using Gradient Descent for Optimization and Learning
Using Gradient Descent for Optimization and LearningUsing Gradient Descent for Optimization and Learning
Using Gradient Descent for Optimization and Learning
 
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...
2013.06.17 Time Series Analysis Workshop ..Applications in Physiology, Climat...
 
Daily marketstats16apr2013
Daily marketstats16apr2013Daily marketstats16apr2013
Daily marketstats16apr2013
 
Daily marketstats24may2013
Daily marketstats24may2013Daily marketstats24may2013
Daily marketstats24may2013
 
Daily marketstats 07 Feb 2014
Daily marketstats 07 Feb 2014Daily marketstats 07 Feb 2014
Daily marketstats 07 Feb 2014
 
Daily marketstats15apr2013
Daily marketstats15apr2013Daily marketstats15apr2013
Daily marketstats15apr2013
 
Global savings glut prabhat patnaik
Global savings glut prabhat patnaikGlobal savings glut prabhat patnaik
Global savings glut prabhat patnaik
 
Business Forecasting with R
Business Forecasting with RBusiness Forecasting with R
Business Forecasting with R
 
Arima model (time series)
Arima model (time series)Arima model (time series)
Arima model (time series)
 

Similar a Course - Machine Learning Basics with R

Brochure for 2022 Webinar Dr.Himadri AI.pdf
Brochure for 2022 Webinar Dr.Himadri AI.pdfBrochure for 2022 Webinar Dr.Himadri AI.pdf
Brochure for 2022 Webinar Dr.Himadri AI.pdfHIMADRI BANERJI
 
Odsc machine-learning-guide-v1
Odsc machine-learning-guide-v1Odsc machine-learning-guide-v1
Odsc machine-learning-guide-v1Harsh Khatke
 
Data science course ppt
Data science course pptData science course ppt
Data science course pptprashantnet
 
Machine Learning Training in Noida
Machine Learning Training in NoidaMachine Learning Training in Noida
Machine Learning Training in NoidaRaj Sharma
 
Artificial Intelligence Beyond Theory & Concepts - Our AI Summer Academy Empo...
Artificial Intelligence Beyond Theory & Concepts - Our AI Summer Academy Empo...Artificial Intelligence Beyond Theory & Concepts - Our AI Summer Academy Empo...
Artificial Intelligence Beyond Theory & Concepts - Our AI Summer Academy Empo...Jothi Periasamy
 
Awareness Of Machine Learning (1).pptx
Awareness Of Machine Learning (1).pptxAwareness Of Machine Learning (1).pptx
Awareness Of Machine Learning (1).pptxakhilaabburi042
 
Awareness Of Machine Learning (1).pptx
Awareness Of Machine Learning (1).pptxAwareness Of Machine Learning (1).pptx
Awareness Of Machine Learning (1).pptxakhilaabburi042
 
How to use LLMs in synthesizing training data?
How to use LLMs in synthesizing training data?How to use LLMs in synthesizing training data?
How to use LLMs in synthesizing training data?Benjaminlapid1
 
Career Options in Machine Learning
Career Options in Machine LearningCareer Options in Machine Learning
Career Options in Machine Learningsynergisticit
 
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING Goodbuzz Inc.
 
Fact vs. Fiction: How Innovations in AI Will Intersect with Recruitment in th...
Fact vs. Fiction: How Innovations in AI Will Intersect with Recruitment in th...Fact vs. Fiction: How Innovations in AI Will Intersect with Recruitment in th...
Fact vs. Fiction: How Innovations in AI Will Intersect with Recruitment in th...CareerBuilder
 
AI Recruitment - How Businesses Are Winning the Race for the Talent
AI Recruitment - How Businesses Are Winning the Race for the TalentAI Recruitment - How Businesses Are Winning the Race for the Talent
AI Recruitment - How Businesses Are Winning the Race for the TalentSkyl.ai
 
Art of artificial intelligence and automation
Art of artificial intelligence and automationArt of artificial intelligence and automation
Art of artificial intelligence and automationLiew Wei Da Andrew
 
Interview for saby upadhyay
Interview for  saby upadhyayInterview for  saby upadhyay
Interview for saby upadhyayCameronDonovan
 
Interview for saby upadhyay
Interview for  saby upadhyayInterview for  saby upadhyay
Interview for saby upadhyayAnthonyBennet
 
An Insight Into the Differences Between Data Mining and Machine Learning
An Insight Into the Differences Between Data Mining and Machine LearningAn Insight Into the Differences Between Data Mining and Machine Learning
An Insight Into the Differences Between Data Mining and Machine LearningAndrew Leo
 
Machine learning for the web explore the web and make smarter predictions usi...
Machine learning for the web explore the web and make smarter predictions usi...Machine learning for the web explore the web and make smarter predictions usi...
Machine learning for the web explore the web and make smarter predictions usi...MannanBansal
 
Predictions 2019: Digital journeys are well on their way
Predictions 2019: Digital journeys are well on their way Predictions 2019: Digital journeys are well on their way
Predictions 2019: Digital journeys are well on their way Belatrix Software
 

Similar a Course - Machine Learning Basics with R (20)

Brochure for 2022 Webinar Dr.Himadri AI.pdf
Brochure for 2022 Webinar Dr.Himadri AI.pdfBrochure for 2022 Webinar Dr.Himadri AI.pdf
Brochure for 2022 Webinar Dr.Himadri AI.pdf
 
Odsc machine-learning-guide-v1
Odsc machine-learning-guide-v1Odsc machine-learning-guide-v1
Odsc machine-learning-guide-v1
 
Data science course ppt
Data science course pptData science course ppt
Data science course ppt
 
Machine Learning Training in Noida
Machine Learning Training in NoidaMachine Learning Training in Noida
Machine Learning Training in Noida
 
Artificial Intelligence Beyond Theory & Concepts - Our AI Summer Academy Empo...
Artificial Intelligence Beyond Theory & Concepts - Our AI Summer Academy Empo...Artificial Intelligence Beyond Theory & Concepts - Our AI Summer Academy Empo...
Artificial Intelligence Beyond Theory & Concepts - Our AI Summer Academy Empo...
 
Awareness Of Machine Learning (1).pptx
Awareness Of Machine Learning (1).pptxAwareness Of Machine Learning (1).pptx
Awareness Of Machine Learning (1).pptx
 
Awareness Of Machine Learning (1).pptx
Awareness Of Machine Learning (1).pptxAwareness Of Machine Learning (1).pptx
Awareness Of Machine Learning (1).pptx
 
Best Data Science Hybrid Course in Pune.
Best Data Science Hybrid Course in Pune.Best Data Science Hybrid Course in Pune.
Best Data Science Hybrid Course in Pune.
 
How to use LLMs in synthesizing training data?
How to use LLMs in synthesizing training data?How to use LLMs in synthesizing training data?
How to use LLMs in synthesizing training data?
 
Career Options in Machine Learning
Career Options in Machine LearningCareer Options in Machine Learning
Career Options in Machine Learning
 
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
 
Fact vs. Fiction: How Innovations in AI Will Intersect with Recruitment in th...
Fact vs. Fiction: How Innovations in AI Will Intersect with Recruitment in th...Fact vs. Fiction: How Innovations in AI Will Intersect with Recruitment in th...
Fact vs. Fiction: How Innovations in AI Will Intersect with Recruitment in th...
 
What is data science ?
What is data science ?What is data science ?
What is data science ?
 
AI Recruitment - How Businesses Are Winning the Race for the Talent
AI Recruitment - How Businesses Are Winning the Race for the TalentAI Recruitment - How Businesses Are Winning the Race for the Talent
AI Recruitment - How Businesses Are Winning the Race for the Talent
 
Art of artificial intelligence and automation
Art of artificial intelligence and automationArt of artificial intelligence and automation
Art of artificial intelligence and automation
 
Interview for saby upadhyay
Interview for  saby upadhyayInterview for  saby upadhyay
Interview for saby upadhyay
 
Interview for saby upadhyay
Interview for  saby upadhyayInterview for  saby upadhyay
Interview for saby upadhyay
 
An Insight Into the Differences Between Data Mining and Machine Learning
An Insight Into the Differences Between Data Mining and Machine LearningAn Insight Into the Differences Between Data Mining and Machine Learning
An Insight Into the Differences Between Data Mining and Machine Learning
 
Machine learning for the web explore the web and make smarter predictions usi...
Machine learning for the web explore the web and make smarter predictions usi...Machine learning for the web explore the web and make smarter predictions usi...
Machine learning for the web explore the web and make smarter predictions usi...
 
Predictions 2019: Digital journeys are well on their way
Predictions 2019: Digital journeys are well on their way Predictions 2019: Digital journeys are well on their way
Predictions 2019: Digital journeys are well on their way
 

Más de Persontyle

European Data Science Academy - Enabling Data Driven Digital Europe
European Data Science Academy - Enabling Data Driven Digital EuropeEuropean Data Science Academy - Enabling Data Driven Digital Europe
European Data Science Academy - Enabling Data Driven Digital EuropePersontyle
 
The Age of Data Driven Science and Engineering
The Age of Data Driven Science and Engineering The Age of Data Driven Science and Engineering
The Age of Data Driven Science and Engineering Persontyle
 
Benefiting from Big Data - A New Approach for the Telecom Industry
Benefiting from Big Data - A New Approach for the Telecom Industry  Benefiting from Big Data - A New Approach for the Telecom Industry
Benefiting from Big Data - A New Approach for the Telecom Industry Persontyle
 
Fundamentals of Machine Learning Bootcamp - 24 Nov London 2014
Fundamentals of Machine Learning Bootcamp - 24 Nov London 2014 Fundamentals of Machine Learning Bootcamp - 24 Nov London 2014
Fundamentals of Machine Learning Bootcamp - 24 Nov London 2014 Persontyle
 
Fundamentals of Machine Learning Bootcamp - 24 Nov London
Fundamentals of Machine Learning Bootcamp - 24 Nov London Fundamentals of Machine Learning Bootcamp - 24 Nov London
Fundamentals of Machine Learning Bootcamp - 24 Nov London Persontyle
 
Deep Learning London Meetup - 24 June 2014
Deep Learning London Meetup - 24 June 2014Deep Learning London Meetup - 24 June 2014
Deep Learning London Meetup - 24 June 2014Persontyle
 
Deep Learning London Meetup - 28 May 2014
Deep Learning London Meetup - 28 May 2014Deep Learning London Meetup - 28 May 2014
Deep Learning London Meetup - 28 May 2014Persontyle
 

Más de Persontyle (7)

European Data Science Academy - Enabling Data Driven Digital Europe
European Data Science Academy - Enabling Data Driven Digital EuropeEuropean Data Science Academy - Enabling Data Driven Digital Europe
European Data Science Academy - Enabling Data Driven Digital Europe
 
The Age of Data Driven Science and Engineering
The Age of Data Driven Science and Engineering The Age of Data Driven Science and Engineering
The Age of Data Driven Science and Engineering
 
Benefiting from Big Data - A New Approach for the Telecom Industry
Benefiting from Big Data - A New Approach for the Telecom Industry  Benefiting from Big Data - A New Approach for the Telecom Industry
Benefiting from Big Data - A New Approach for the Telecom Industry
 
Fundamentals of Machine Learning Bootcamp - 24 Nov London 2014
Fundamentals of Machine Learning Bootcamp - 24 Nov London 2014 Fundamentals of Machine Learning Bootcamp - 24 Nov London 2014
Fundamentals of Machine Learning Bootcamp - 24 Nov London 2014
 
Fundamentals of Machine Learning Bootcamp - 24 Nov London
Fundamentals of Machine Learning Bootcamp - 24 Nov London Fundamentals of Machine Learning Bootcamp - 24 Nov London
Fundamentals of Machine Learning Bootcamp - 24 Nov London
 
Deep Learning London Meetup - 24 June 2014
Deep Learning London Meetup - 24 June 2014Deep Learning London Meetup - 24 June 2014
Deep Learning London Meetup - 24 June 2014
 
Deep Learning London Meetup - 28 May 2014
Deep Learning London Meetup - 28 May 2014Deep Learning London Meetup - 28 May 2014
Deep Learning London Meetup - 28 May 2014
 

Último

Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxfirstjob4
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...shambhavirathore45
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...amitlee9823
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxolyaivanovalion
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...amitlee9823
 
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779Best VIP Call Girls Noida Sector 22 Call Me: 8448380779
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779Delhi Call girls
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxolyaivanovalion
 
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...shivangimorya083
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxJohnnyPlasten
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...amitlee9823
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionfulawalesam
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 

Último (20)

Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptx
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptx
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779Best VIP Call Girls Noida Sector 22 Call Me: 8448380779
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interaction
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 

Course - Machine Learning Basics with R

  • 1. © 2014 Persontyle Ltd. All rights reserved. [Hands-on Introduction of Supervised Machine Learning Methods] DURATION – 2 DAY MACHINE LEARNING BASICS WITH R R logo is trademark of the R Foundation, from http://www.r-project.org
  • 2. www.persontyle.com© 2014 Persontyle Ltd. All rights reserved. R logo is trademark of the R Foundation, from http://www.r-project.org Data generated through our activities captures plethora of information about our identity, likes and dislikes etc. This information has tremendous value in every aspect of human life. Programming computers to unravel this hidden information is what Machine Learning is all about. It is the art and science of scientifically deriving insights, patterns and predictions from data. Though it has been an area of active research for over 50 years, Machine Learning is currently undergoing a renaissance driven by Moore's law and the rise of big data. Large private and public investment in the area has given us self-driving cars, practical speech recognition, effective web search, and a vastly improved understanding of the human genome. Computer based Machine Learning algorithms now outperform humans on tasks such as handwritten digit recognition, traffic sign recognition, and even on some complex reasoning tasks as demonstrated by IBM's Watson winning Jeopardy <MACHINE LEARNING> “The field of machine learning is concerned with the question of how to construct computer programs that automatically improve with experience.” - Tom Mitchell Machine Learning models and programs automatically make decisions from data in order to achieve some goal or requirement. Machine learning models matter to the world. Because they are; #EFFICIENT Machine Learning models predict and detect partners faster than any other manual program or method. #EFFECTIVE Machine Learning models can do better job than humans when analysing and predicting large scale and streaming data sets (big data). #SCALE Machine Learning models can provide solutions to large data problems that traditional systems can not solve.
  • 3. www.persontyle.com© 2014 Persontyle Ltd. All rights reserved. R logo is trademark of the R Foundation, from http://www.r-project.org  Machine perception  Computer vision, including object recognition  Natural language processing  Pattern recognition  Search engines  Medical diagnosis  Bioinformatics  Brain-machine interfaces  Detecting credit card fraud  Stock market analysis  Classifying DNA sequences  Sentiment analysis  Affective computing  Information retrieval  Recommender systems MACHINE LEARNING CAN APPEAR IN MANY GUISES Examples in the real world include handwritten recognition, weather prediction, fraud detection, search, facial recognition, and so forth are all examples of machine learning in the wild. Applications for Machine Learning include: “Over the past two decades Machine Learning has become one of the mainstays of information technology and with that, a rather central, albeit usually hidden, part of our life. With the ever increasing amounts of data becoming available there is good reason to believe that smart data analysis will become even more pervasive as a necessary ingredient for technological progress.” DR. ALEXANDER J. SMOLA, PROFESSOR, CARNEGIE MELLON UNIVERSITY
  • 4. www.persontyle.com© 2014 Persontyle Ltd. All rights reserved. R logo is trademark of the R Foundation, from http://www.r-project.org This course is meant to be a fast-paced, hands-on introduction to Machine Learning using R. The course will be focusing mainly on basics of Machine Learning methods and practical implementation of these methods to solve real-world problems. This course aims to develop basic understanding of supervised learning methods, through the use of the R programming platform. It describes the different types of learning and the two main categories of their applications: Classification and Regression. With a focus on the former, it takes a close look at typical Machine Learning techniques and how they apply on datasets akin to those encountered in the real world. Our goal is to give you the basic skills that you need to understand supervised Machine Learning algorithms and models, and interpret their output, which is important for solving a range of data science problems. Without getting too much into the mathematics of Machine Learning, this course dwells on the ideas and principles of it, along with the two main methods that all Machine Learning practitioners use. With theory and hands-on sessions intertwined, the course illustrates the usefulness of Machine Learning and how you can learn it effectively without losing sight of its elegance and value. Apart from the Classification techniques, you will learn about how to validate any classifier's performance, when to use what, and how the new innovations come about. MACHINE LEARNING BASICS WITH R “The ability to take data - to be able to understand it, to process it, to extract value from it, to visualize it, to communicate it - that’s going to be a hugely important skill in the next decades.” Hal Varian
  • 5. WHAT WILL YOU LEARN? In this course you will learn, among other things: + What Machine Learning entails and why it is important + The different types of Learning, especially Supervised Learning + How Classification and Regression fit in Machine Learning + Understand types of classifiers + Applied details of following algorithms: + Decision Tree and basic overview of Random Forests + k Nearest Neighbour (kNN) and a few of its variants + Bayes Classifier + How to use these algorithms in a variety of benchmark datasets + How to fine-tune these algorithms for better performance + Validation metrics for a classifier's performance (ROC curve, Accuracy Rate, F1-metric) + The various libraries in R for these types of classifiers + Which algorithm to choose based on the data you have + Data transformation www.persontyle.com© 2014 Persontyle Ltd. All rights reserved. R logo is trademark of the R Foundation, from http://www.r-project.org MACHINE LEARNING BASICS WITH R PREREQUISITES Knowledge of R programming language and familiarity with linear algebra. Basic familiarity with statistics and probability theory is recommended. * If you don't know R then first attend the Getting Started with R and Data Analysis workshop.
  • 6. SCHEDULE www.persontyle.com© 2014 Persontyle Ltd. All rights reserved. R logo is trademark of the R Foundation, from http://www.r-project.org MACHINE LEARNING BASICS WITH R Day 1 Time Topic/Activity 09:00-10:00 What is Machine Learning (ML) and why is it important? Examples of applications 10:00-11:00 Different types of learning and where they are used 11:00-11:15 Coffee Break 11:15-12:00 Overview of Classification and Regression 12:00-13:00 Using R for Machine Learning 13:00-13:30 Lunch Break 13:30-14:15 LAB: Practical examples (using R): Boston Housing Prices (Regression) 14:15-14:45 Classification Learning 14:45-15:00 Coffee Break 15:00-16:00 Decision Tree Learning (ID3, C4.5, and C5.0) 16:00-16:45 LAB: Decision Tree example using R: Japanese Credit Screening (Classification) 16:45-17:00 Coffee Break 17:00-17:30 Boosting method for decision trees 17:30-18:30 LAB: Using the C5.0 Decision Tree (Credit Card dataset) Day 2 Time Topic/Activity 09:30-10:00 Instance-based learning - the intuitive approach to ML 10:00-11:00 kNN algorithm. kNN bias. 11:00-11:30 Overview of some kNN variants 11:30-11:45 Coffee Break 11:45-12:15 Curse of Dimensionality 12:15-13:00 Guest Speaker 13:00-13:30 Lunch Break 13:30-14:00 Data transformation and normalization 14:00-14:45 LAB: Using kNN for Credit Card dataset 14:45-15:15 Bayes rule and Bayesian Learning. Dealing with noisy data 15:15-15:30 Coffee Break 15:30-16:00 Bayesian Learning in action / Bayesian Classification 16:00-16:45 LAB: Using Bayes classifier for Credit Card dataset 16:45-17:00 Pros and Cons of methods covered 17:00-17:15 Coffee Break 17:15-17:45 Validating results - ROC curve, Accuracy Rate, F1 metric, Confusion Table, Precision, Recall 17:45-18:30 LAB: creating confusion table and basic validation metrics for all previous drills (adult census data)
  • 7. www.persontyle.com© 2014 Persontyle Ltd. All rights reserved. R logo is trademark of the R Foundation, from http://www.r-project.org Persontyle trainers are passionate about meeting each participants learning needs. They have been chosen both for their extensive practical Data Science and Machine Learning experience and for their ability to educate and interact with natural empathy. All of our trainers have worked on a variety of data science and Machine Learning projects. They share their academic knowledge and real-world experience and each individual adds their own unique perspective to the course. Our trainers present in a style that is informal, entertaining and highly interactive. Guest Speakers Business leaders, Machine Learning practitioners, and academic researchers covering use cases, case studies and sharing practical experience of applying Data Science and Machine Learning in their organizations. COURSE INSTRUCTORS “A breakthrough in Machine Learning would be worth ten Microsofts” BILL GATES, CHAIRMAN, MICROSOFT WHO SHOULD ATTEND Anyone interested in learning and applying supervised machine learning methods and R to solve real-world data problems. Ideal for people interested in pursuing career in data science. This hands-on workshop is aimed at business and technology professionals, Developer, Architect, Manager, Data Analyst, BI Developer/Architect, QA, Performance Engineers, Sales, Pre Sales and Marketing, Project Manager, Public Services, Teaching Staff and all those who already have some basic competence in statistics but wish to begin using R for machine learning for the first time. MACHINE LEARNING BASICS WITH R
  • 8. For corporate bookings or to organize on-site training email hello@persontyle.com or call now +44 (0)20 3239 3141 Register Now RETURN ON INVESTMENT (ROI) CONVINCE YOUR BOSS The advent of the data driven connected era means that analyzing massive scale, messy, noisy, and unstructured data is going to increasingly form part of everyone's work. The School of Data Science learning programs provide a unique investment opportunity that pay’s for itself many times over. "For the best return on your money, pour your purse into your head." World-class Instructors Benjamin Franklin Develop Practical Data Science Skills Real World Industry Use Cases Short Courses For Time Convenience Value For Money THE SCHOOL OF DATA SCIENCE The School of Data Science, a project of Persontyle, specializes in designing and delivering structured, relevant and practical learning experiences for all of us to understand data science in simple human terms. Follow us on Twitter @schooltds Like us on Facebook Get in touch! hello@personyyle.com Limited seats. We encourage you to register as soon as you can. www.persontyle.com/school MACHINE LEARNING BASICS WITH R