Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d35c836e authored by HARLE Remy's avatar HARLE Remy
Browse files

featuring : Ajout du script pour faire les boxplots

figure : Ajout des boxplots des estimations des paramètres
parent e89337fe
No related branches found
No related tags found
No related merge requests found
figure/identif/sigma_0.05/alpha_0.05.png

7.82 KiB

figure/identif/sigma_0.05/mu_0.05.png

8.51 KiB

figure/identif/sigma_0.05/oalpha_0.05.png

7.95 KiB

figure/identif/sigma_0.05/omu_0.05.png

7.68 KiB

figure/identif/sigma_0.542/alpha_0.542.png

7.84 KiB

figure/identif/sigma_0.542/mu_0.542.png

8.73 KiB

figure/identif/sigma_0.542/oalpha_0.542.png

8.19 KiB

figure/identif/sigma_0.542/omu_0.542.png

7.88 KiB

distrib_alpha <- ggplot(data = data.frame(alpha) ) +
geom_boxplot(aes(y = log(alpha))) +
geom_hline(yintercept = log(true_v[1])) +
labs(title="Distribution de log(alpha)" , subtitle = "sigma = 0.542") +
theme(plot.title = element_text(hjust = 0.5) , plot.subtitle = element_text(hjust = 0.5)) +
ylim(-15, 0)
distrib_mu <- ggplot(data = data.frame(mu) ) +
geom_boxplot(aes(y = log(mu))) +
geom_hline(yintercept = log(true_v[2])) +
labs(title="Distribution de log(mu)" , subtitle = "sigma = 0.542") +
theme(plot.title = element_text(hjust = 0.5) , plot.subtitle = element_text(hjust = 0.5)) +
ylim(-32, -20)
distrib_omega_alpha <- ggplot(data = data.frame(omega_alpha) ) +
geom_boxplot(aes(y = omega_alpha)) +
geom_hline(yintercept = true_v[4]**2) +
labs(title="Distribution de omega_alpha" , subtitle = "sigma = 0.542") +
theme(plot.title = element_text(hjust = 0.5) , plot.subtitle = element_text(hjust = 0.5)) +
ylim(0,28)
distrib_omega_mu <- ggplot(data = data.frame(omega_mu)) +
geom_boxplot(aes(y = omega_mu)) +
geom_hline(yintercept = true_v[5]**2) +
labs(title="Distribution de omega_mu" , subtitle = "sigma = 0.542") +
theme(plot.title = element_text(hjust = 0.5) , plot.subtitle = element_text(hjust = 0.5)) +
ylim(0,30)
......@@ -9,7 +9,7 @@ control <- saemix::saemixControl(map = FALSE,fix.seed = T, fim = FALSE, ll.is =
alpha_pop = exp(-6.34)
mu_pop = exp(-26.8)
sigma = 0.542
sigma = 0.05
omega_alpha = 3.37
omega_mu = 3.78
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment