Line charts and Connected Scatterplots in R with geom_line() and geom_path()

Поделиться
HTML-код
  • Опубликовано: 21 авг 2024

Комментарии • 8

  • @muhammadzarghamali4804
    @muhammadzarghamali4804 Год назад +1

    They don't know how much content you covered. Amazing

    • @TheDataDigest
      @TheDataDigest  Год назад

      Well thank you. And I already have ideas for the next 30 videos :) We will see what the future brings.

  • @Spammailssammler
    @Spammailssammler 2 года назад +1

    Very nice work
    Thanks

    • @TheDataDigest
      @TheDataDigest  2 года назад

      Thanks for the comment. Before the video I had not used geom_path() and geom_step(), so I learn quite a bit in the creation and I am glad that other people find it useful.

  • @anirudhvenkataramanan4321
    @anirudhvenkataramanan4321 2 года назад +1

    Nice video. But how to label the max and the min values in the line plot?

    • @TheDataDigest
      @TheDataDigest  2 года назад +1

      You can always add geom_text() with specific x- and y-values and whatever label = "example" you wish. I recommend using the base functions which.max() and which.min(). So if you have two vectors with y_values as dates and x_values you want to find the min and max you could do:
      + geom_text(mapping(aes(x=min(x_values), y=y_values[which.min(x_values)]), label = "this is the minimum"),
      and then repeat the same for max values.

  • @manikandanp6120
    @manikandanp6120 2 года назад +1

    Sir put more vedio regulaely

    • @TheDataDigest
      @TheDataDigest  2 года назад

      That's the plan! At least weekly uploads this year. Hopefully even more in the future.