Radar / Spider Chart in R Tutorial (R Graph Gallery)

Поділитися
Вставка
  • Опубліковано 20 гру 2024

КОМЕНТАРІ • 12

  • @TheDataDigest
    @TheDataDigest  3 місяці тому

    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=ec775c430e6644c39bb567e32a6ae7b8

  • @abhishekjayant9733
    @abhishekjayant9733 Рік тому

    Best video on the topic. Ultra helpful. Thanks for the amazing content

  •  2 роки тому +2

    This is really helpful, thank you very much!

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

      Hi Victor, glad to hear that. Comments like yours are a great motivation for me to continue and produce more videos.

  • @saxegothaea_conspicua
    @saxegothaea_conspicua 2 роки тому

    Thanks for the video. Is there any way to move the positions of the variables labels? long names do not fit well.

  • @haimkichik
    @haimkichik 2 роки тому +1

    Thanks bro!! How could you export png using foreach or a similar function? Cheers from Mexico!

    • @TheDataDigest
      @TheDataDigest  2 роки тому +1

      Excellent question because it is easy to answer :)
      You can use the png() function from the grDevices package. Try ?png()
      You can specify the width, height, res (resolution) and filename there. For example:
      png(file = "C:/Documents/radarchart.png, width = 1920, height=1080, res =180); radarchart(data);dev.off()
      With the png() function the empty png-file is created and you basically fill it with your chart as you are used to automatically. the dev.off() closes and saves the file. Give it a try!

    • @haimkichik
      @haimkichik 11 місяців тому

      @@TheDataDigest

  • @TheManiaKyu
    @TheManiaKyu 3 роки тому +1

    It really helped~~~ thank you

  • @MahmudulHasan-gp9qm
    @MahmudulHasan-gp9qm 8 місяців тому

    he data must be given as dataframe.
    The data must be given as dataframe.
    The data must be given as dataframe.
    The data must be given as dataframe.
    The data must be given as dataframe.
    The data must be given as dataframe- pleaase help me fix it

    • @TheDataDigest
      @TheDataDigest  7 місяців тому

      Use the str() function on your data object, like "str(my_data)" and tell me what it says. It probably is not a data.frame. But you can turn it into a data.frame with the "as.data.frame(my_data)" or simply "data.frame(my_data)" functions.