1 Ch 12 Function writing lInputting functions lFunction writing examples lPooled t-test lPlotting © Fall 2004 Don Edwards and the University of South Carolina.

Slides:



Advertisements
Similar presentations
Water Rights Accounting. New Accounting Model New Technology: 1979 versus 2011 – Faster processors – Faster graphics – Larger, faster, memory – Larger,
Advertisements

Writing functions in R Some handy advice for creating your own functions.
Title Goes Here Title Goes Here Title Goes Here Title Goes Title Goes Her Presenters go here Medical University of South Carolina, Charleston, SC This.
Basics of R, Ch  Functions  Help  Managing your Objects  Getting Data into R  Getting Results out of R 1 © Fall 2004 Don Edwards and the University.
1 Ch 7-8 lArithmetic lLogical Operators © Fall 2004 Don Edwards and the University of South Carolina.
True BASIC Ch. 6 Practice Questions. What is the output? PRINT X LET X = -1 PRINT X FOR X = 4 TO 5 STEP 2 PRINT X NEXT X PRINT X END.
UNIVERSITY OF SOUTH CAROLINA Department of Computer Science and Engineering CSCE 580 Artificial Intelligence Program 1 Fall 2008 Marco Valtorta
1 Basics of R, Ch lFunctions lHelp lManaging your Objects lGetting Data into R lGetting Results out of R © Fall 2004 Don Edwards and the University.
1 Ch 11 Graphics lManaging graphics windows l1-d, 2-d and 3-d plotting lInteractive graphics © Fall 2004 Don Edwards and the University of South Carolina.
Your Presentation Title Names of Team members Advisor name EE496A Midterm Presentation Fall, 2006.
©Brooks/Cole, 2001 Chapter 7 Text Files. ©Brooks/Cole, 2001 Figure 7-1.
MAGGIE Progress Presentation. Completed Tasks “ Save As…” facility provided for the plots. “ Save As…” facility provided for the plots. History option.
1 Statistics 517 Computing in Statistics © Fall 2004 Don Edwards and the University of South Carolina.
1 Ch 9-10 lSubsetting lOrdering lArray operations lIteration © Fall 2004 Don Edwards and the University of South Carolina.
Grep, comm, and uniq. The grep Command The grep command allows a user to search for specific text inside a file. The grep command will find all occurrences.
The Essentials of 2-Level Design of Experiments Part I: The Essentials of Full Factorial Designs The Essentials of 2-Level Design of Experiments Part I:
Python File Handling. In all the programs you have made so far when program is closed all the data is lost, but what if you want to keep the data to use.
Chapter 25: Paired Samples and Blocks
Powerpoint Presentation Pointers
Section 5.2 One-to-One Functions; Inverse Functions.
CSC 385 – Project - Jason Creighton. 2. Input a Graph Via Keyboard Simply enter a sequence of ‘1’s’ and ‘0’s’ to draw a graph via an adjacency matrix.
BIO 416K Vertebrate Physiology I Dr. Cynthia Gill  Syllabus  Course overview  Cells and graphs.
CS 111 – Oct. 4 Web design –HTML –Javascript Commitment: –This week, read sections 4.3 – 4.5.
Copyright © 2012 Pearson Education, Inc. Publishing as Prentice Hall. Section 6.2 One-to-One Functions; Inverse Functions.
1 Fall 2009ACS-1903 Ch 4 Loops and Files while loop do-while loop for loop Other topics later on …
Chapter 6: Modifying and Combining Data Sets  The SET statement is a powerful statement in the DATA step DATA newdatasetname; SET olddatasetname;.. run;
Sockets A popular API for client-server interaction.
HIS 115 WEEK 7 CHECKPOINT - CLASS STRUCTURE AND SLAVE CULTURE To purchase this material click below link
Test1 Here some text. Text 2 More text.
Chapter 5: Enhancing Your Output with ODS
Chapter 6: Modifying and Combining Data Sets
Ch 11 Graphics Managing graphics windows 1-d, 2-d and 3-d plotting
Notes Over 2.1 Graph the numbers on a number line. Then write two inequalities that compare the two numbers and and 9 l l l.
Ch. 5.1 fill in Notes: What is Supply?
Course Description Algorithms are: Recipes for solving problems.
Ch 10 Sequential Access Files
CS 301 Fall 2001 – Chapter 3 Slides by Prof. Hartman, following “IBM PC Assembly Language Programming” by Peter Abel 9/17/2018.
Ch 7-8 Arithmetic Logical Operators
Trails Carolina
Therapy Programs Provider: Trails Carolina
Trails Carolina: Social Media Profiles
Here is the graph of a function
When I want to execute the subroutine I just give the command Write()
Source: Oxford English for Careers in Nursing 1 Practice File
Notes Over 2.1 Function {- 3, - 1, 1, 2 } { 0, 2, 5 }
[type text here] [type text here] [type text here] [type text here]
Your text here Your text here Your text here Your text here Your text here Pooky.Pandas.
stop bsi collaborative
Statistics 540 Computing in Statistics
A graphing calculator is required for some problems or parts of problems 2000.
Your text here Your text here Your text here Your text here
Basics of R, Ch Functions Help Managing your Objects
Degrees and Certificates
Title of Project References Tips Abstract (Optional) Assessment
Lecture 2: Programming in R
The Senate Committee on Teaching recommends that the bar graphs be removed from the end-of-semester student course evaluations.  The committee feels that.
Ch 9-10 Subsetting Ordering Array operations Iteration
[type text here] [type text here] [type text here] [type text here]
One-to-One Functions;

AP Java 9/21/2018.
Watermarks What is it? A symbol, image or text that is transparent and identifies the original author or the specific intent of the document, photo, report.
Refresh: Click Here.
Objective- To graph a relationship in a table.
Let’s Talk: Strategies to Encourage Discussion

Line Graphs.
Refined14ReportPowerpointTopic templates
UW CSE 190p Section 6/28, Summer 2012 Dun-Yu Hsiao.
Presentation transcript:

1 Ch 12 Function writing lInputting functions lFunction writing examples lPooled t-test lPlotting © Fall 2004 Don Edwards and the University of South Carolina

2 Inputting functions lWork from a text file lFixing and sourcing lRe-editing

3 Pooled t-test refresher

4 Pooled t-test example lCode is reasonably transparent lOutput includes a graph and a dataframe (a list is more typical) lR function t.test is also available lBe careful of home-grown functions like this

5 Pooled t-test lbrowser() lGreat for debugging lRemembering options is difficult lBe careful about using it in loops