Authors

Carlos Alberto 22

U1A1 Latest

29.01.2021

"numeric" ## [1] "numeric" "integer" ## [1] "integer" "complex" ## [1] "complex" "logical" ## [1] "logical" "character" ## [1] "character"...

16 sym R (129 sym/10 pcs)

Carolina Tamayo 22

hola mundo markdown en R Latest

22.02.2021

Es un archivo markdown encabezado de primer nivel Es un subencabezado de segundo nivel Es un subencabezado de tercer nivel Es un subencabezado de cuarto nivel Texto libre, aquí puede ir lo que deseamos escribir, tal vez como descripción o...

292 sym

César A. Galvão 22

ME2 - Estimação de parâmetros - SAEB Latest

11.03.2021

1 Intervalos de Confiança Dois problemas clássicos da inferência Estatística , cujo objetivo é fazer generalizações sobre uma população com base nos dados de uma amostra são a estimação de parâmetros e os testes de hipóteses sobre...

3745 sym 9 img

Data Analysis of a Personal Activity Monitoring Device Latest

02.05.2020

Loading and preprocessing the data 1. Load the data (i.e. read.csv()) unzip("./activity.zip") activityData <- read.csv("./activity.csv") 2. Process/transform the data (if necessary) into a format suitable for your analysis...

2213 sym R (2624 sym/25 pcs) 5 img

Chuck Powell 22

Oneway ANOVA Explanation and Example in R; Part 1 Latest

27.09.2017

This tutorial was inspired by a this post published at DataScience+ by Bidyut Ghosh. Special thanks also to Dani Navarro, The University of New South Wales (Sydney) for the book Learning Statistics with R (hereafter simply LSR) and the lsr...

11538 sym R (7738 sym/11 pcs) 8 img 2 tbl

CloudStat 22

Testing for… Latest

31.10.2011

Input Output Testing for regression Input: advertising=c(1,2,3,4,5) sales=c(1,1,2,2,4) sales.Reg=lm(sales~advertising) summary(sales.Reg) Output: > advertising=c(1,2,3,4,5) > sales=c(1,1,2,2,4) > > sales.Reg=lm(sales~advertising) >...

447 sym R (796 sym/2 pcs) 4 img

Alfredo Flores Garcia 22

Prueba sobre comunicar con Dataframe Latest

12.03.2022

Objetivo Crear un data.frame con vectores de edades y nombres y mostrarlo en el documento Contruir los vectores # Aqui escribimos el codigo R edades <- c(23, 24, 54, 56, 54, 57, 65, 34, 28) nombres <- c("RUBEN", "ANGEL", "JOSUE", "CARLOS",...

168 sym R (446 sym/5 pcs)

Rios Alvarado Cristian 22

Caso 1 - Tablas de Frecuencias "Alumnos ITD" Latest

16.09.2020

Objetivo : Desarrolla tabla de frecuencia gráficos para identificar alumnos inscritos Instalamos los paquetes install.packages(“fdth”) install.packages(“readr”) Cargamos Las librerias library(fdth) library(readr) Cargamos los datos de...

9423 sym

Daniel Lakens 22

The perfect t-test Latest

18.05.2015

I’ve created an easy to use R script that will import your data, and performs and writes up a state-of-the-art dependent or independent t-test. The goal of this script is to examine whether more researcher-centered statistical tools (i.e., a...

15945 sym 2 img

Carlos Daniel Reyes Valenzuela 22

Caso 1 Regresión Lineal Simple Peso Estatura datos FIFA Latest

15.09.2022

1 Objetivo Construir y evaluar un modelo de regresión lineal simple para realizar predicciones de peso de jugadores de fútbol con los datos de FIFA de acuerdo a la variable estatura 2 Descripción Cargar librerías Cargar datos Seleccionar...

8182 sym R (8410 sym/42 pcs) 6 tbl