INTRODUCTION TO Machine Learning

Slides:



Advertisements
Similar presentations
Choose the right picture
Advertisements

How to install the Zelle graphics package
Choose the right picture
SOFTWARE It Consists of a series of instructions that tells the computer what to do. It is collection of programs. Software is set of instruction which.
IPlots – interactive graphics “selection” feature GLEON Fellowship Workshop January 14-18, 2013 Sunapee, NH Samantha Oliver.
Learning R hands on. Organization of Folders: Class Data folder has datasets (end in.csv or.rda) Rcode has the scripts of R commands that can cut and.
HELP COMPONEN SYSTEM WinCC CERN SUBJECTS - GENERATE HTML COMPONENT FILES - FULL COMPONENTS FRAMEWORK HELP - CENTRAL HELP REPOSITORY - ACCESIBLE.
Introduction to Computer Operating Systems
OCR GCSE Computing © Hodder Education 2013 Slide 1 OCR GCSE Computing Python programming 1: Introduction.
Introduction to R Introductions What is R? RStudio Layout Summary Statistics Your First R Graph 17 September 2014 Sherubtse Training.
Find the slope of the line through P(-6,2) and Q(-5,3) m.
Introduction to Graphics in R 3/12/2014. First, let’s get some data Load the Duncan dataset It’s in the car package. Remember how to get it? – library(car)
Introduction to CADStat. CADStat and R R is a powerful and free statistical package [
CLEANING UP MESSY DATA WITH OPEN REFINE Presented by Anjum Najmi & Spencer Keralis.
Does a Person’s Income Relate to Their Age?. Variables  Annual Income Measured in Dollars per Year  Age of Individual Measured in Years.
Choose the right picture Choose the right word. 5.
TITLE OF YOUR PROJECT.
Madhu Karra1, Jason Koglin1,2
Python for data analysis Prakhar Amlathe Utah State University
IBM Predictive Analytics Virtual Users’ Group Meeting March 30, 2016
Why don’t programmers have to program in machine code?
A Playful Introduction to Programming by Jason R. Briggs
Python Lesson 12 Mr. Kalmes.
PowerShell Introduction Copyright © 2016 – Curt Hill.
Introduction to Python
Cryptography Sage Interlude 1.
Computer Software: Programming
Unit 4 Statistical Analysis Data Representations
Introduction to Python
1. Open any Office 2016 app, such as Word, and create a new document.
DATA MINING Python.
Data Mining Tools some examples.
All Together Now! Theme One.
Presented by: First Last
The Need for Programming Languages
Step 1: Download R and install R:
Python Lesson 12 Mr. Kalmes.
Summary Statistics in R Commander
QM222 A1 Visualizing data using Excel graphs
How to Fix Microsoft Office Error 2932 at Support Number
R Assignment #4: Making Plots with R (Due – by ) BIOL
Rootkit A rootkit is a set of tools which take the ability to access a computer or computer network at administrator level. Generally, hackers install.
Prepared by Kimberly Sayre and Jinbo Bi
Fix Bitdefender 2018 not Updating Error
Get Valid Avaya 7491X Exam Study Guide - Avaya 7491X Questions Answers Dumps4Download.us
Fix Bitdefender Internet Security Error 217 Bitdefender Support Number Give a Ring on:
Fix Bitdefender Antivirus Error Code 5 Give a Ring on: Bitdefender Support Number.
Do you know this browser?...
Introduction to R.
Brief Intro to Python for Statistics
Crash course in R – short introduction
التدريب الرياضى إعداد الدكتور طارق صلاح.
Introduction to Apache
Code is on the Website Outline Comparison of Excel and R
EMSE 6574 – Programming for Analytics: Python 101 – Python Enviornments Joel Klein.
Day 9 Translating functions From tables into graphs
Installing Packages Introduction to R, Part II
Day 9 Translating functions From tables into graphs
An introduction to the Linux environment v
Option One Install Python via installing Anaconda:
Day 32 Stretching and Compressing graphs
U3L1 The Need For Programming
Introduction to Python
Recitation #1 Tel Aviv University 2017/2018 Slava Novgorodov
Writing Response Vocabulary
Recitation #1 Tel Aviv University 2016/2017 Slava Novgorodov
GRAPHING LINEAR EQUATIONS
2-2 Logic Part 2 Truth Tables.
Review of Previous Lesson
Matplotlib and Pandas
Presentation transcript:

INTRODUCTION TO Machine Learning Assignment

Assignment #1 Machine Learning can be done either in R or in Python. Choose your language and framework. For R, Caret is framework advised. For Python, scikit-learn is advised. Install the respective language and framework For R, install R first and then Rstudio. Then type command to install caret. Caret is Machine Learning framework in R. install.packages(‘caret’). Install other relevant packages: caret ggplot2 rpart.plot rattle corrgram For Python, use WinPython 3.5+ to install on Windows. You can choose any other instalaltion package as long as it comes with pandas, numpy and scikit-learn.

Assignment#2 Read the file from framework installed Draw two kinds of graphs atleast. Histogram Boxplot ScatterPlot LinePlots color-coded LinePlots for each state (something like in picture) Answer the following questions: Which State has the highest rate of growth between 1990 -2000. Which State has the highest loss in 2008 financial crisis in volumes based on this data.

Assignment#3 Try to divide the earlier loaded data into Assignment#2 into training and testing set using relevant framework Clean junk data Find Correlation between Various columns. Finalize the list of features you want to use. Can you reason out why 2008 Financial crisis from the given data set without Machine Learning?