Stylizing the appearance of facet labels with ggplot2's facet_wrap (CC236)

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

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

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

    True to form, it's been super dry the last few weeks and then last night we got an inch of rain - 25 mm!

  • @NATS7599
    @NATS7599 2 года назад +5

    Mean(prcp > 0) 🤯…I learn something new in everyone one of your videos!

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

      🤓love it! Thanks for watching

  • @JJ0145
    @JJ0145 Месяц назад

    Fantastic video!! Please do more of these types of videos

    • @Riffomonas
      @Riffomonas  Месяц назад

      I'll see about circling back to data viz types of videos. I've made a bunch of them and am not sure what I might have missed 😂

  • @eric13hill
    @eric13hill 2 года назад +5

    Listening to you describe what you are doing and why teaches me so much more than looking at at someone's finalized code. I learn something valuable each time you make a video. I'm struggling updating one dataframe with a partial set of updated values of the same columns from another dataframe. I get errors if there are some index values in one dataframe but not in the other, or if there are NA values. I haven't found the right combination of functions to achieve a good merge of MY data.

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

      Thanks! I guess I’d suggest trying to whittle things down to a minimal example that shows your problem and then try to solve it. In these situations I usually find just the process of simplifying things helps me to think through what’s wrong and what I need to do

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

      @@Riffomonas This was how I finally did it. fixed % left_join(df2, by = c('INDEX'), suffix = c('', '.y')) %>% mutate(Lat_AND_Long = coalesce(Lat_AND_Long, Lat_AND_Long.y)) %>% mutate(Latitude = coalesce(Latitude,Latitude.y)) %>% mutate(Longitude = coalesce(Longitude,Longitude.y)) %>% mutate(Website = coalesce(Website,Website.y)) %>% select(-c(Lat_AND_Long.y)) %>% select(-c(Latitude.y)) %>% select(-c(Longitude.y)) %>% select(-c(Website.y))

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

    I really like your videos. They have helped me a lot. Thanks

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

    Nice! I prefer to go with a theme instead of tinkering too much. The "tufte" theme from the ggthemes package is nice and minimalist. To each its own!

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

    Fantastic tutorial!

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

      Thanks! Glad you enjoyed the video🤓

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

    Great examples! Would anyone know how one would you put red vertical lines at different x-intercept positions for each facet?

  • @liutrvcyrsui
    @liutrvcyrsui 4 месяца назад

    +1

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

    Great as usual. May I ask you to let me know, how I can get the code script?

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

      Thanks for watching! If you go to the link in the description to the episodes blogpost you’ll find the GitHub repository before and after the episode

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

      @@Riffomonas Excellent. Thanks a lot for you. 👌

  • @ikrambashir8604
    @ikrambashir8604 9 месяцев назад

    Hi, thanks for the video. How can I add symbols to the individual strip title of facrt_wrap ?