Recently Published
Praktik Pembangkitan Data Time Series
Nama: Pradytha Galuh Putranti
NIM: 2304220013
Pemodelan Statistika dan Simulas
Program 10
Develop an R function to draw a density curve representing the probability density function of a continuous variable, with separate curves for each group, using ggplot2.
DATA 622 Project 3
This is SVM model comparison for project 3 for Data 622 at CUNY SPS, Spring 2025
Plot
ggsave("wk4_ci_plot.pdf", # ファイル名
plot = last_plot(), # 最後のプロットを指定
width = 4, # 横幅指定
height = 8, # 縦幅指定
device = cairo_pdf)
Plot
ggplot(df_smpl) +
geom_pointrange(aes(y = id, x = mean,
xmin = lower, xmax = upper,
colour = color)) +
geom_vline(xintercept=mu, color = "black") +
xlab(expression(bar(mu))) + ylab("ID") +
labs(color = "パラメタを含む")
LA1-Presentation
Plot a dumbbell chart comparing male vs female literacy rates across states(team 11-presentation file)
LA1
Team 11:
Plot a dumbbell chart comparing male vs female literacy rates across states.