Bina Ramamurthy 6/7/2014 CSE6511.  R is a software package for statistical computing.  R is an interpreted language  It is open source with high level.

Slides:



Advertisements
Similar presentations
Data Mining with R/ORE Minming Duan. 2 iTech Solution Profile Agenda R/ORE Overview 1 XML output generation using SQL 4 Integration with IBP and BIEE.
Advertisements

Database System Concepts and Architecture
Components of GIS.
Welcome to the Plant Breeding and Genomics Webinar Series Today’s Presenter: Dr. Heather Merk Presentation & Supplemental Files:
COLLECT : Browse more than 13,000 dates sets posted by StatCrunch members, or use the survey tool to collect data. CRUNCH : Quickly analyze data and interpret.
Bina Ramamurthy 6/28/2014 CSE651C, B. Ramamurthy1.
IS 4420 Database Fundamentals Leon Chen. 2 Agenda About yourself About yourself  Name  Major About the instructor About the instructor Syllabus Syllabus.
Many kinds of clients and servers This work is licensed under a Creative Commons Attribution-Noncommercial- Share Alike 3.0 License. Skills: none IT concepts:
Computing in Statistical Education Pang Du Department of Statistics Virginia Tech.
Chapter 4: Database Management. Databases Before the Use of Computers Data kept in books, ledgers, card files, folders, and file cabinets Long response.
Chapter 14 The Second Component: The Database.
Live the dream… Technologies of e-Commerce Unit 8 – e-Commerce LO1 : Know the technologies required for e-commerce.
Lead Black Slide. © 2001 Business & Information Systems 2/e2 Chapter 7 Information System Data Management.
RESEARCH HUB AT THE UNIVERSITY LIBRARIES PENN STATE UNIVERSITY TOUR OF STATISTICAL PACKAGES.
Lecture-8/ T. Nouf Almujally
The “R” Statistical Package Naomi Altman Dept. of Statistics PSU.
Computer Software.
Air Quality Data Analysis Using Open Source Tools
Chapter 5 Application Software.
2. Introduction to the Visual Studio.NET IDE 2. Introduction to the Visual Studio.NET IDE Ch2 – Deitel’s Book.
Chapter 4 Application Software: Programs that Let You Work and Play
Introduction of Some Useful Free Software Cheng-Han Du.
1 Chapter 6 Understanding Computers, 11 th Edition Software Ownership Rights Software license: agreement, either included in a software package or displayed.
TC2-Computer Literacy Mr. Sencer February 8, 2010.
Exploring Marketing Research William G. Zikmund Chapter 2: Information Systems and Knowledge Management.
Biostatistics, statistical software II. A brief survey of statistical program systems Krisztina Boda PhD Department of Medical Informatics, University.
© Paradigm Publishing, Inc. 5-1 Chapter 5 Application Software Chapter 5 Application Software.
The Internet in Education Objectives Introduction Overview –The World Wide Web –Web Page v. Web Site v. Portal Unique and Compelling Characteristics Navigation.
Introduction to R By Robert Biddle. About Me Data Professional with over 10 years experience. Hilton Grand Vacations, Orlando Data Architect MCITP Database.
 Overview of SPSS  Interface  Getting Started  Managing Data  Descriptive Statistics  Basic Analysis  Additional Resources.
Chapter 19 UBUNTU VS. WINDOWS J.Galván1 INFORMATION TECHNOLOGY APPLICATIONS IN BUSINESS.
Intro to R R is a free version of S-plus R is a free version of S-plus Can be used interactively but script or syntax files are commonly used to record.
Software Writer:-Rashedul Hasan Editor:- Jasim Uddin.
Guide to Linux Installation and Administration, 2e1 Chapter 10 Managing System Resources.
SUSE Linux Enterprise Desktop Administration Chapter 6 Manage Software.
© Paradigm Publishing Inc. 5-1 Chapter 5 Application Software.
Data Manipulation Steve Allison
MIS 105 LECTURE 1 INTRODUCTION TO COMPUTER HARDWARE CHAPTER REFERENCE- CHP. 1.
C OMPUTING E SSENTIALS Timothy J. O’Leary Linda I. O’Leary Presentations by: Fred Bounds.
1 Title: Introduction to Computer Instructor: I LTAF M EHDI.
Data Science Background and Course Software setup Week 1.
1 COMPUTER SCIENCE DEPARTMENT COLORADO STATE UNIVERSITY 1/9/2008 SAXS Software.
Windows Programming, C.-S. Shieh, KUAS EC, Chapter 0 Overview.
KING SAUD UNIVERSITY – COLLAGE OF COMPUTER AND INFORMATION SCIENCES CSC 113 JAVA ONLINE DOCUMENTATION.
Current Information To help you find current news and information, many search engines and directories include a hyperlink to a "What's new" page. Many.
PROGRAMMING IN R Introduction to R. In this session I will: Introduce you to the R program and windows Show how to install R Write basic programs in R.
1 Visualizer- Manager’s View. 2  Graphical presentation and analysis of Firewall data  Graphical presentation and analysis of Audit data  Immediate.
Internet Searching the World Wide Web. The Internet and the World Wide Web The Internet is a worldwide collection of networks that allows people to communicate.
Software. Introduction n A computer can’t do anything without a program of instructions. n A program is a set of instructions a computer carries out.
Lecture 11 Introduction to R and Accessing USGS Data from Web Services Jeffery S. Horsburgh Hydroinformatics Fall 2013 This work was funded by National.
U.S. Department of the Interior U.S. Geological Survey July 2014 OPeNDAP Services – Present and Future at LP DAAC Brian Davis 1, Rob Quenzer 1, Jason Werpy.
Introduction to Data Manipulation, Analysis, and Visualization with R Patrick Grof-Tisza.
Chapter 3 Applications Software: Getting the Work Done.
How to Get Started With Python
A quick guide to other statistical software
Big data toolbox.
Python for data analysis Prakhar Amlathe Utah State University
Data Tools: R and RStudio
Software Chapter 11.
R Programming.
The Six Parts of a GIS.
Introduction to Data Analytics
Introduction to R.
ICPSR: Resources for Instructors Finding and Analyzing Data 9/26/2012
Today’s Beginner Workshop
Siva R Venna (sxv6878) Satya Katragadda (sxk6389)
R Bina Ramamurthy CSE651C, B. Ramamurthy 12/7/2018.
CSCI N207 Data Analysis Using Spreadsheet
Java Online documentation
R Bina Ramamurthy CSE4/587 4/7/2019.
Presentation transcript:

Bina Ramamurthy 6/7/2014 CSE6511

 R is a software package for statistical computing.  R is an interpreted language  It is open source with high level of contribution from the community  “R is very good at plotting graphics, analyzing data, and fitting statistical models using data that fits in the computer’s memory.”  “It’s not as good at storing data in complicated structures, efficiently querying data, or working with data that doesn’t fit in the computer’s memory.” 6/7/2014 CSE6512

 There are many packages available for statistical analysis such as SAS and SPSS but there are expensive (user license based) and are proprietary.  R is open source and it can pretty much what SAS can do but free.  R is considered one of the best statistical tools in the world.  For R people can submit their own packages/libraries, using the latest cutting edge techniques.  To date R has got almost 15,000 packages in the CRAN (Comprehensive R Archive Network – The site which maintains the R project) repository.  R is great for exploratory data analysis (EDA): for understanding the nature of your data before you launch serious analytics. 6/7/2014 CSE6513

 An R package is a set of related functions  To use a package you need to load into R  R offers a large number of packages for various vertical and horizontal domains:  Horizontal: display graphics, statistical packages, machine learning  Verticals: wide variety of industries: analyzing microarray data, modeling credit risks, social sciences, automobile data (none so far on sensor data from automobiles!) 6/7/2014 CSE6514

 Library  Package  Class   Thousands of Online libraries  CRAN: Comprehensive R Archive Network  Look at all the packages available in CRAN  R-Forge is another source for people to collaborate on R projects 6/7/2014 CSE6515

 R Basics, fundamentals  The R language  Working with data  Statistics with R language 6/7/2014 CSE6516

 Obtaining the R package  Installing it  Install and use packages  Quick overview and tutorial 6/7/2014 CSE6517

 See p.98 onwards till p.102 of simpleR: Using R for introductory statistics By J. Verzani SimpleR.pdf  R in a nutshell, by Joseph Adler, O’reilly, 2010 Chapter 3 Basics, Ch.4 packages, (search for this online) Look for these resources online…and try these.  See Rhandout.docx 6/7/2014 CSE6518

 A package is a collection of functions and data files bundled together.  In order to use the components of a package it needs to be installed in the local library of the R environment.  Loading packages  Custom packages  Building packages  Activity: explore what R packages are available, if any, for the automotive domain  (Later on, when the need arises) Try to create a custom package for the domain of your interest. 6/7/2014 CSE6519

 R syntax  R Control structures  R Objects  R formulas 6/7/2014 CSE65110

6/7/2014 CSE65111 Lets explore RStudio

 Look at the tutorial in handout#1 6/7/2014 CSE65112