소스 검색

Plot age par sexe

master
Maxime Wack 7 년 전
부모
커밋
e94b59fb35
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. +4
    -2
      app.R

+ 4
- 2
app.R 파일 보기

@@ -186,10 +186,12 @@ server <- function(input, output, session)
output$plot_age <- renderPlot({
data_age() %>%
ggplot() +
aes(x = Age) +
aes(x = Age, fill = Sexe) +
geom_histogram() +
scale_fill_manual(values = c("Homme" = "lightblue", "Femme" = "pink")) +
scale_x_continuous(limits = c(min_age, max_age)) +
theme(axis.title = element_blank())
theme(axis.title = element_blank(),
legend.position = "none")
})
# Map



불러오는 중...
취소
저장