Nonparametric Statistical Methods Using R
eBook - ePub

Nonparametric Statistical Methods Using R

John Kloke, Joseph W. McKean

  1. 287 pagine
  2. English
  3. ePUB (disponibile sull'app)
  4. Disponibile su iOS e Android
eBook - ePub

Nonparametric Statistical Methods Using R

John Kloke, Joseph W. McKean

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

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

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
Nonparametric Statistical Methods Using R è disponibile online in formato PDF/ePub?
Sì, puoi accedere a Nonparametric Statistical Methods Using R di John Kloke, Joseph W. McKean in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Mathematics e Probability & Statistics. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Anno
2014
ISBN
9781498787277
Edizione
1
Argomento
Mathematics
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] ...

Indice dei contenuti

Stili delle citazioni per 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.