How to Make Beautiful Tables using R programming

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

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

  • @neofriberg
    @neofriberg 6 месяцев назад +1

    Thank you for making this, I was really having troubles with styling my tables until I found this!

    • @FelixAnalytix
      @FelixAnalytix  6 месяцев назад

      Thank you for your kind message :)

  • @chidaruma_
    @chidaruma_ 3 месяца назад

    This is amazing, thank you. Very well explained and a very nice example.

    • @FelixAnalytix
      @FelixAnalytix  2 месяца назад

      Thank you for you nice comment :)

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

    Brilliant tutorial - really clear, easy to follow and some impressive outputs! Thank you!!

  •  Год назад

    Thanks for the tutorial! I'll try it myself.

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

    Excellent one! Thank you so much for this!

  • @jamesleleji6984
    @jamesleleji6984 9 месяцев назад +1

    Thanks. How did you import the images into R

    • @FelixAnalytix
      @FelixAnalytix  8 месяцев назад +1

      Welcome! The images are imported automatically in the table using their URLs using the function gt_img_circle() from the "gtExtras" R package. More information and an example here: jthomasmock.github.io/gtExtras/reference/gt_img_circle.html

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

    Fantastic tutorial, it all worked perfectly for me. Stumbled on this video via a search for gtExtras - learnt about that and so much more. Looking forward to using these new skills in my work, and to checking out your many other interesting tutorials. Thank you Felix!

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

      Thank you very much for your comment! Very interesting to learn how you found this video. Have a nice day!

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

    I copied your code but I'm getting the following error message:
    "Error in get_spotify_access_token() :"

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

      Thank you for your question.
      Here a possible solution: once you replaced "your_spotify_client_id" and "your_spotify_client_secret" with your own id and secret, be sure to restart R ("Session" > "Restart R" in RStudio) so RStudio can access your environment variables. After restarting your R session, the code should work.
      Hope it helps!

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

      ​@@FelixAnalytix Thank you for your response! Unfortunately none of the above works. I believe that Spotify have made some changes regarding the developer page and what is required to create an app? Which Redirect URI did you use?

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

      Correct, the "Redirect URI" field is now mandatory when creating a new app. But it doesn't matter in our case. You can use for example "localhost:1410".

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

      @@FelixAnalytix This works, thank you Felix!