• R/O
  • SSH

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修订版aa29b94b4c79b5252e9b51e02173679ad72f50ba (tree)
时间2022-03-29 23:22:40
作者Lorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

I fixed the latest plot.

更改概述

差异

diff -r 9050b1f46cc3 -r aa29b94b4c79 markdown/fiches_automatic.Rmd
--- a/markdown/fiches_automatic.Rmd Tue Mar 29 16:10:36 2022 +0200
+++ b/markdown/fiches_automatic.Rmd Tue Mar 29 16:22:40 2022 +0200
@@ -227,7 +227,9 @@
227227 ms_covid_percentage
228228 ) , names_to= "country", values_to="covid_percentage" ) %>%
229229 mutate(ll=format_col(covid_percentage*100,1)) %>%
230- mutate(ll=paste(ll, "%", sep=""))
230+ mutate(ll=paste(ll, "%", sep="")) %>%
231+ arrange(country) %>%
232+ mutate(country=fct_inorder(country))
231233
232234
233235
@@ -580,7 +582,7 @@
580582 coord_cartesian(xlim = c(0, 1)) +
581583 my_ggplot_theme2("top")+
582584 scale_x_continuous(labels = label_percent())+
583- scale_y_discrete(labels =c(ms3,"EU27") )+
585+ scale_y_discrete(labels =c("EU27", ms3) )+
584586 xlab("Share of Covid19 State Aid Expenditure")+
585587 ylab(NULL)
586588