RPubs will retire in June 2027. Your existing documents will stay accessible through December 31, 2031
and Connect Cloud is the recommended home for new publishing. Read the blog post

Recently Published

MANOVA
Homework 9 Data 101
Linear and Multiple Linear Regression Homework
Prueba pronóstico
Document
Prueba de Normalidad del Modelo de Regresión Lineal Clásico
En esta ocasión el objetivo es de verificar el primer supuesto que es el de Normalidad para el Modelo de Regresión Lineal Múltiple Clásico bajo 3 métodos, el JB, KS y SW
Nobel Prize - API
Stats2_week8_9
Dashboard Assignment - TRI Page View Analysis
Analyzing if Users Visit More Pages Before Converting
Plot # install.packages("ggplot2") library(ggplot2)
# install.packages("ggplot2") library(ggplot2) # Datos set.seed(1) df <- data.frame(x = rnorm(200), y = rnorm(200)) ggplot(df, aes(x = x, y = y)) + geom_density_2d_filled() + guides(fill = guide_legend(title = "Nivel"))
Plot # install.packages("ggplot2") library(ggplot2)
# install.packages("ggplot2") library(ggplot2) # Datos set.seed(1) df <- data.frame(x = rnorm(200), y = rnorm(200)) ggplot(df, aes(x = x, y = y)) + geom_point() + geom_density_2d_filled(alpha = 0.4) + geom_density_2d(colour = "black")