The Original and Current Basic R “Console” command line interface….

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

Chapters 12 and 13 A Display Model and Graphics Classes John Keyser’s Modifications of Slides by Bjarne Stroustrup
Spreadsheet Software lesson 14. This lesson includes the following sections: Spreadsheet Programs and Their Uses The Spreadsheet's Interface Entering.
Unit-1 : Introduction.
Data Mining Datameer RapidMiner Windows Azure Marketplace
Financial Data Calculator© Produced by: Mathematical Investment Decisions, Inc. 95 West Gate Drive – 2 nd Floor Cherry Hill, NJ Web site:
MATLAB Presented By: Nathalie Tacconi Presented By: Nathalie Tacconi Originally Prepared By: Sheridan Saint-Michel Originally Prepared By: Sheridan Saint-Michel.
Flow Master  Flow Master is used to design and analyze single pipe.  It is very flexible as no unit conversion is needed.  Data can be entered with.
T T07-01 Sample Size Effect – Normal Distribution Purpose Allows the analyst to analyze the effect that sample size has on a sampling distribution.
RESEARCH HUB AT THE UNIVERSITY LIBRARIES PENN STATE UNIVERSITY TOUR OF STATISTICAL PACKAGES.
Introduction to SAS Math 3200 Jan Jimin Ding.
Graphical User Interfaces A Quick Outlook. Interface Many methods to create and “interface” with the user 2 most common interface methods: – Console –
Source Code -Tons of Code Package -More Code -Statistical Functions -Datasets Workspace -Fewer Lines of Code -Capability.
Biostatistics, statistical software II. A brief survey of statistical program systems Krisztina Boda PhD Department of Medical Informatics, University.
INTRO TO LOG FUNCTIONS. Sect 5.10 on p. 451 The assumption.
Prof. Name Position (123) University Name Chapter 1: Introduction Spreadsheet-Based Decision Support Systems.
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.
Social Science Research Design and Statistics, 2/e Alfred P. Rovai, Jason D. Baker, and Michael K. Ponton Modifying Syntax PowerPoint Prepared by Alfred.
CSCI 171 Presentation 1. Computer Software System Software –Operating systems –Utility programs –Language compilers Application Software.
CSCI 130 Chapter 1. History of C Bell Telephone Laboratories (1972) Dennis Ritchie (also created UNIX) A - B - C.
Outline Class Intros – What are your goals? – What types of problems? datasets? Overview of Course Example Research Project.
Introduction to R Lecture 1: Getting Started Andrew Jaffe 8/30/10.
Chapter 11 An Introduction to Visual Basic 2008 Why Windows and Why Visual Basic How You Develop a Visual Basic Application The Different Versions of Visual.
Currently, how many R Packages? At the command line enter:  dim(available.packages())  available.packages()
Working with Spreadsheets A spreadsheet is a worksheet that resembles a table and is used for organizing numbers. An electronic spreadsheet file can contain.
--Development of Graphic Card since  Two major companies: nVidia AMD  Compare performance, architecture, and price by graphs.  3 types of graphs.
R-Studio and Revolution Analytics have built additional functionality on top of base R.
Outline Class Intros Overview of Course Example Research Project.
Outline Comparison of Excel and R R Coding Example – RStudio Environment – Getting Help – Enter Data – Calculate Mean – Basic Plots – Save a Coding Script.
Introduction to SAS Welcome to IT’s seminar on stat. packages Sam Gordji, Weir 107.
240-Current Research Easily Extensible Systems, Octave, Input Formats, SOA.
Programming in R SQL in R. Running SQL in R In this session I will show you how to: Run basic SQL commands within R.
Microsoft Assistive Technology Products Brought to you by... Jill Hartman.
Microsoft Office 2007 – Illustrated Introductory, Premium Video Edition Understanding Essential Computer Concepts.
Interfaces By: Ben Griffin and Laurel Baston. What is an Interface An interface is the aggregate of means by which people (the users) interact with a.
Graphical User Interface You will be used to using programs that have a graphical user interface (GUI). So far you have been writing programs that have.
Introduction to Modeling – Part I Sarah Kelly ITEP.
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.

Introduction to MATLAB Section2, statistics course Third year biomedical dept. Dina El Kholy, Ahmed Dalal.
Application of Data Mining Techniques on Survey Data using R and Weka
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.

Business Calculus Derivative Definition. 1.4 The Derivative The mathematical name of the formula is the derivative of f with respect to x. This is the.
Copyright © 2006, SAS Institute Inc. All rights reserved. Company confidential - for internal use only SAS/IML Studio Ian Sedgwick.
12-Jun-16 Event loops. 2 Programming in prehistoric times Earliest programs were all “batch” processing There was no interaction with the user Input Output.
Making graphs with academic software tools (SPSS, Stata and R) Paul Lambert, University of Stirling Presentation to the Scottish Civil Society Data Partnership.
Statistical Exploratory Analysis with “EnQuireR” 1.Introduction 2.Installation 3.How to 4.Report.
Take Your Data Analysis and Reporting to the Next Level by Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio David Bailey Tim Beese.
Programming C++ in Linux by various IDEs and editors by: Danial Khashabi Master: Dr.B.Taheri November 2008.
An Introduction to GNU-R Image of Manchester Mark 1 used with the kind permission of the School of Computer Science, The.
EMPA Statistical Analysis
Event loops 16-Jun-18.
CHAPTER 2 Computer Software.
Introduction to R Programming with AzureML
Design AH Computing.
Using the Slope Formula
2.1- Solving Equations Graphically
Today’s Beginner Workshop
Event loops.
Ship Harbor Model Department of Computer Science University of Karachi
Code is on the Website Outline Comparison of Excel and R
Event loops 17-Jan-19.
Event loops 17-Jan-19.
Event loops 8-Apr-19.
Statistics---SPSS.
Just Basic Lesson 15 Mr. Kalmes.
Event loops.
Event loops 19-Aug-19.
Presentation transcript:

The Original and Current Basic R “Console” command line interface….

R-Commander (2005) Data Mining R-Deducer (2011) Graphic / ggplot2 Rattle (2004-6) Statistics - Graphs

Revolution Analytics has moved onto the radar screen for predictive analytics

Enter Single Commands View Text Output Datasets, etc. Console Shortcut to viewData() Write Code/ Program -Input Data -Analyze -Graphics Scripting

Install Packages Create Functions Built-In Functions

Programming Languages A Few Lines of Code

R Packages have been created that are equivalent to the base functionality of SAS and SPSS

Add-Ins Built-In Functions Create Functions

Built-In Functions & Commands Mathematical Formula Data Management via the GUI

Use the c() function to combine values or text ? to get more information ?c Combing Numbers, Text, Etc. h <- c(77, 60, 90)

Let’s Try Some Basic Statistical Functions mean(h) max(h)

Let’s Try Some Graphical Functions #charts plot(h) barplot(h) pie(h) #data management sort(h) h2 <- sort(h) barplot(h2)