Plot in R :Adding data labels to R plots, Data Visualization using R , GGplot2, P

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ก.พ. 2025

ความคิดเห็น •

  • @artemisarojas9999
    @artemisarojas9999 2 ปีที่แล้ว

    Thank you very much Sir, it was a great help

    • @DevResearch
      @DevResearch  2 ปีที่แล้ว

      Thanks for this appreciation. Please share this.

  • @chaytanyakumar8939
    @chaytanyakumar8939 3 ปีที่แล้ว +1

    Good one!

  • @NikitaJonesSubscribe
    @NikitaJonesSubscribe 3 ปีที่แล้ว

    Thank you Sir!!! Fantastic video :)

    • @DevResearch
      @DevResearch  3 ปีที่แล้ว

      Thanks for appreciation. Keep watching my videos and please share with your friends.

  • @dishadhanda5416
    @dishadhanda5416 2 ปีที่แล้ว

    How to add specific names to each of the bars? Like bar 1 = a, 2 = b and soon?

  • @sylvestermulanshokachanda
    @sylvestermulanshokachanda 2 ปีที่แล้ว

    Can I round off values displayed by geom_text/label?

    • @DevResearch
      @DevResearch  2 ปีที่แล้ว +1

      Yes, inbthe aes(), before nane of the variable add round (), like this,. ggplot(data, aes(xvar,yvar, label=round(var,2)))+
      Geom_text()
      This will round the value to two decimal points.

    • @sylvestermulanshokachanda
      @sylvestermulanshokachanda 2 ปีที่แล้ว

      @@DevResearch Thanks for the quick reply, I'll have a go at it!