Nonparametric Statistical Methods Using R
eBook - ePub

Nonparametric Statistical Methods Using R

John Kloke, Joseph W. McKean

  1. 287 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

Nonparametric Statistical Methods Using R

John Kloke, Joseph W. McKean

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

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

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist Nonparametric Statistical Methods Using R als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu Nonparametric Statistical Methods Using R von John Kloke, Joseph W. McKean im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Mathematics & Probability & Statistics. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Jahr
2014
ISBN
9781498787277
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] ...

Inhaltsverzeichnis

Zitierstile für 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.