Recently Published
Probabilidad
moni
Monitoria2
taller en clase
Document
trabajo
distrib age échantillon
set.seed(123) # Pour la reproductibilité
sample_size <- 100 # Nombre de points à afficher (ajuste selon besoin)
données_sample <- données %>%
sample_n(min(sample_size, nrow(données))) # Prendre un échantillon limité
ggplot(données_sample, aes(x = "", y = age)) +
geom_boxplot(outlier.colour = "red", outlier.shape = 16, outlier.size = 3) +
geom_jitter(width = 0.1, size = 0.8, alpha = 0.5, color = "blue") +
theme_minimal() +
labs(title = "Distribution des âges (échantillon)", y = "Âge")
Bland-Altman Plot
Creating a Bland-Altman Plot with Julia
Generalized Linear Models with Julia
Generalized Linear Models with Julia