Nonparametric Statistical Methods Using R
eBook - ePub

Nonparametric Statistical Methods Using R

John Kloke, Joseph W. McKean

  1. 287 pages
  2. English
  3. ePUB (adapté aux mobiles)
  4. Disponible sur iOS et Android
eBook - ePub

Nonparametric Statistical Methods Using R

John Kloke, Joseph W. McKean

DĂ©tails du livre
Aperçu du livre
Table des matiĂšres
Citations

À propos de ce livre

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

Foire aux questions

Comment puis-je résilier mon abonnement ?
Il vous suffit de vous rendre dans la section compte dans paramĂštres et de cliquer sur « RĂ©silier l’abonnement ». C’est aussi simple que cela ! Une fois que vous aurez rĂ©siliĂ© votre abonnement, il restera actif pour le reste de la pĂ©riode pour laquelle vous avez payĂ©. DĂ©couvrez-en plus ici.
Puis-je / comment puis-je télécharger des livres ?
Pour le moment, tous nos livres en format ePub adaptĂ©s aux mobiles peuvent ĂȘtre tĂ©lĂ©chargĂ©s via l’application. La plupart de nos PDF sont Ă©galement disponibles en tĂ©lĂ©chargement et les autres seront tĂ©lĂ©chargeables trĂšs prochainement. DĂ©couvrez-en plus ici.
Quelle est la différence entre les formules tarifaires ?
Les deux abonnements vous donnent un accĂšs complet Ă  la bibliothĂšque et Ă  toutes les fonctionnalitĂ©s de Perlego. Les seules diffĂ©rences sont les tarifs ainsi que la pĂ©riode d’abonnement : avec l’abonnement annuel, vous Ă©conomiserez environ 30 % par rapport Ă  12 mois d’abonnement mensuel.
Qu’est-ce que Perlego ?
Nous sommes un service d’abonnement Ă  des ouvrages universitaires en ligne, oĂč vous pouvez accĂ©der Ă  toute une bibliothĂšque pour un prix infĂ©rieur Ă  celui d’un seul livre par mois. Avec plus d’un million de livres sur plus de 1 000 sujets, nous avons ce qu’il vous faut ! DĂ©couvrez-en plus ici.
Prenez-vous en charge la synthÚse vocale ?
Recherchez le symbole Écouter sur votre prochain livre pour voir si vous pouvez l’écouter. L’outil Écouter lit le texte Ă  haute voix pour vous, en surlignant le passage qui est en cours de lecture. Vous pouvez le mettre sur pause, l’accĂ©lĂ©rer ou le ralentir. DĂ©couvrez-en plus ici.
Est-ce que Nonparametric Statistical Methods Using R est un PDF/ePUB en ligne ?
Oui, vous pouvez accĂ©der Ă  Nonparametric Statistical Methods Using R par John Kloke, Joseph W. McKean en format PDF et/ou ePUB ainsi qu’à d’autres livres populaires dans Mathematics et Probability & Statistics. Nous disposons de plus d’un million d’ouvrages Ă  dĂ©couvrir dans notre catalogue.

Informations

Année
2014
ISBN
9781498787277
Édition
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 des matiĂšres

Normes de citation pour 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.