Nonparametric Statistical Methods Using R
eBook - ePub

Nonparametric Statistical Methods Using R

John Kloke, Joseph W. McKean

  1. 287 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Nonparametric Statistical Methods Using R

John Kloke, Joseph W. McKean

Book details
Book preview
Table of contents
Citations

About This Book

A Practical Guide to Implementing Nonparametric and Rank-Based ProceduresNonparametric Statistical Methods Using R covers traditional nonparametric methods and rank-based analyses, including estimation and inference for models ranging from simple location models to general linear and nonlinear models for uncorrelated and correlated responses. The a

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Nonparametric Statistical Methods Using R an online PDF/ePUB?
Yes, you can access Nonparametric Statistical Methods Using R by John Kloke, Joseph W. McKean in PDF and/or ePUB format, as well as other popular books in Mathematics & Probability & Statistics. We have over one million books available in our catalogue for you to explore.

Information

Year
2014
ISBN
9781498787277
Edition
1
Chapter 1

Getting Started with R

This chapter serves as a primer for R. We invite the reader to start his or her R session and follow along with our discussion. We assume the reader is familiar with basic summary statistics and graphics taught in standard introductory statistics courses. We present a short tour of the langage; those interested in a more thorough introduction are referred to a monograph on R (e.g., Chambers 2008). Also, there are a number of manuals available at the Comprehensive R Archive Network (CRAN) (http://cran.r-project.org/). An excellent overview, written by developers of R, is Venables and Ripley (2002).
R provides a built-in documentation system. Using the help function i.e. help(command) or ?command in your R session to bring up the help page (similar to a man page in traditional Unix) for the command. For example try: help(help) or help(median) or help(rfit). Of course, Google is another excellent resource.

1.1 R Basics

Without going into a lot of detail, R has the capability of handling character (strings), logical (TRUE or FALSE), and of course numeric data types. To illustrate the use of R we multiply the system defined constant pi by 2.
> 2*pi
 
[1] 6.283185
We usually want to save the result for later calculation, so assignment is important. Assignment in R is usually carried out using either the <- operator or the = operator. As an example, the following code computes the area of a circle with radius 4/3 and assigns it to the variable A:
> r<-4/3
> A<-pi*r^2
> A
 
[1] ...

Table of contents

Citation styles for Nonparametric Statistical Methods Using R

APA 6 Citation

Kloke, J., & McKean, J. (2014). Nonparametric Statistical Methods Using R (1st ed.). CRC Press. Retrieved from https://www.perlego.com/book/1604517/nonparametric-statistical-methods-using-r-pdf (Original work published 2014)

Chicago Citation

Kloke, John, and Joseph McKean. (2014) 2014. Nonparametric Statistical Methods Using R. 1st ed. CRC Press. https://www.perlego.com/book/1604517/nonparametric-statistical-methods-using-r-pdf.

Harvard Citation

Kloke, J. and McKean, J. (2014) Nonparametric Statistical Methods Using R. 1st edn. CRC Press. Available at: https://www.perlego.com/book/1604517/nonparametric-statistical-methods-using-r-pdf (Accessed: 14 October 2022).

MLA 7 Citation

Kloke, John, and Joseph McKean. Nonparametric Statistical Methods Using R. 1st ed. CRC Press, 2014. Web. 14 Oct. 2022.