Це відео не доступне.
Перепрошуємо.

Lollipop Chart in R Tutorial (R Graph Gallery)

Поділитися
Вставка
  • Опубліковано 4 вер 2024
  • In this video I show you how Lollipop charts are created in R.
    You can download the R code from this video here: www.skool.com/...
    You will learn how you can use the geom_point() function to modify the marker/dot and geom_segment() to modify the stem/line. You will also learn how to adjust the baseline and highlight and annotate certain observations. I will show how cleveland plots are very similar to lollipop charts.
    The ggcharts package also has a lollipop_chart() function to create these plots very quickly.
    Check out the source for the R code on the R-Gallery:
    www.r-graph-ga...
    Background Music:
    "Sappheiros - Dawn" is under a Creative Commons license (CC BY 3.0)
    Music promoted by BreakingCopyright: bit.ly/2OBe00v​​
    Music : Way Home by Tokyo Music Walker
    Stream & Download : fanlink.to/tmw...
    "Uniq - Art Of Silence" is under a Creative Commons license (CC BY-NC-SA 3.0)
    Music promoted by BreakingCopyright: • 🤫 Ambient Music (No Co...

КОМЕНТАРІ • 3

  • @TheDataDigest
    @TheDataDigest  2 дні тому

    If you want to download the R code from this video you can do this here in my free skool community:
    www.skool.com/data-analysis-with-r-6607/classroom/daa88316?md=c7e012525e3a4598b90544f50a1e3732

  • @user-nm2ou1um7c
    @user-nm2ou1um7c 3 роки тому +1

    How do we do if we want to separate values categorized into low, medium and high in the lollipop chart??

    • @TheDataDigest
      @TheDataDigest  3 роки тому

      Do you mean similar to the example from 10:07? You would need a column with "low, medium, high" and then specify this column in geomerrorbarh(aes( , color = category)), same for geom_point() afterwards. Also use position = position_dodge() for both. Or do you mean separate in different charts for example with facet_wrap(~category).