@nrennie@fosstodon.org
@nrennie@fosstodon.org avatar

nrennie

@nrennie@fosstodon.org

Lecturer in Health Data Science at Lancaster University. Scottish. Generative artist. Runner of endurance races. Neat freak. She/her. Views my own.

#RStats #DataViz #GenerativeArt #DataScience #Rtistry #Statistics #Stats #datadon #Geo #RSpatial

This profile is from a federated server and may be incomplete. Browse more on the original instance.

nrennie, to random
@nrennie@fosstodon.org avatar

A fantastic day at London conference today!

My slides on "Typst or LaTeX? Styling PDF documents with Quarto extensions" are available online 👀

Link to slides: https://nrennie.rbind.io/talks/satrdays-london-2024/slides.html

@jumpingrivers

nrennie, to random
@nrennie@fosstodon.org avatar

Thank you to the (anonymous) person who nominated me as an inspirational woman last month - it was a wonderful surprise! 💜And fantastic to see the work of many incredible women+ recognised!

nrennie,
@nrennie@fosstodon.org avatar

@unicornCoder Thank you!

nrennie, to python
@nrennie@fosstodon.org avatar

A very quick contribution for the "Diverging" prompt on day 5 of the #30DayChartChallenge! 📊

🌊 I created a waterfall chart
🧀 looking at cheese consumption over time
🎨 with XKCD-inspired styling

Code: https://github.com/nrennie/30DayChartChallenge/blob/main/2024/scripts/05_diverging.py

#Python #DataViz

nrennie, to random
@nrennie@fosstodon.org avatar

📢New blog post 📢

I built a Shiny app to display my plots, which updates automatically every time there's a new plot!

📦 Data extracted from the plot R scripts
💻 GitHub Actions to update the data
🕸️ Deployed with Shinylive

Read about the process in this blog post: https://nrennie.rbind.io/blog/webr-shiny-tidytuesday/

nrennie, to random
@nrennie@fosstodon.org avatar

Excited to share that I'll be speaking at London on April 27th!🎉📊🌟

Join me for an engaging discussion on R, Quarto, LaTeX, and Typst! Huge thanks to @jumpingrivers, CUSP London and @RConsortium for making this event possible.

Can't wait to connect with fellow data enthusiasts and share knowledge at this amazing event!🧠 See you there!

Reserve your tickets now 🎟👇
https://www.eventbrite.co.uk/e/satrdays-london-2024-registration-758588196717

lf_araujo, to random
@lf_araujo@mastodon.social avatar

Hey gang, in my attempt to make the violin plots useful I am trying to overlay the true values of the simulation on the violins. Preferably tiny horizontal lines, but points are ok. This is as far as I got, since the true values have different names (b1,b3) as the simulation values (mrdoc2_b1_hat ...) I cannot overlay one on the other, how to go about it?

image/png

nrennie,
@nrennie@fosstodon.org avatar

@lf_araujo

If you want to plot b1 and b1_hat in different geoms, don't use pivot_longer first. Just pass each column name into aes() for each geom e.g.

ggplot(data) +
geom_point(aes(x, y = b1)) +
geom_violin(aes(x, y = b1_hat))

More generally, I'd recommend looking at the ggdist package for these types of plots: https://mjskay.github.io/ggdist/articles/freq-uncertainty-vis.html

nrennie, to random
@nrennie@fosstodon.org avatar

Thanks to Forecasting for Social Good for inviting me to deliver a workshop on "Forecasting with Generalised Additive Models (GAMs) in R" today! We talked about:

❓ What are GAMs?
❓ How do we fit GAMs in R?
❓ Model evaluation and forecasting
❓ When GAMs go wrong!

Slides: https://nrennie.github.io/f4sg-gams

GitHub: https://github.com/nrennie/f4sg-gams

Posit Cloud: https://posit.cloud/content/7637971

nrennie,
@nrennie@fosstodon.org avatar

And a blog post answering some of the questions that we ran out of time for!

https://nrennie.rbind.io/blog/forecasting-gams-r-questions/

vbuendiar, to random
@vbuendiar@fediscience.org avatar

Today is the "Women and Girls in science" day, so let me recommend some colleagues I usually enjoy reading. Here in Mastodon, you have

And, instead of reposting this thing, (1) go repost them and (2) make your own list!

nrennie,
@nrennie@fosstodon.org avatar
nrennie, to random
@nrennie@fosstodon.org avatar

Do you create PDF documents using Quarto? Currently using LaTeX but curious about this new, fast and easy to use thing called Typst?

Read my latest blog post comparing using Quarto with LaTeX vs Typst to make pretty looking PDF documents! 👀

Link: https://nrennie.rbind.io/blog/making-pdf-with-quarto-typst-latex/

pytheas, to random

I'm struggling a bit with using metadata in quarto. I have a project that includes some custom metadata of the form

key1:
key2:
key3a: true
key3b: false

and so on. I would like to be able to overwrite some of these when rendering to modify which parts of the document are included in the output via
{.content-hidden unless-meta="key1.key2.key3a"}

I've tried to do that using something along the lines of

quarto render -M key1.key2.key3a:false, but that appears to have no effect.

Any advice on how to make this work, or how to achieve the same effect in a different way would be much appreciated.

nrennie,
@nrennie@fosstodon.org avatar

@pytheas

I've done something similar with parameters rather than metadata using:

r if (params$x) "::: {.content-hidden}"

optional content goes here

r if (params$x) ":::"

Not sure if it's the best approach but it works :)

nrennie, to random
@nrennie@fosstodon.org avatar

Join me on February 21st for a Forecasting for Social Good (F4SG) workshop about forecasting using GAMs in R! 📈

Register here: https://cardiff.zoom.us/meeting/register/tZEqduGsqjwqGNWoG7FSA6U51ohnswp74Ww-#/registration

terence, to random
@terence@fosstodon.org avatar

Inspired and made possible by @nrennie, here's a typewriter elevation map of Japan. The characters to indicate increasing elevation are: 地, 低, 中, 高, and 峰.

adventures, an tale

A close-up of the Chūbu region to show the characters used

nrennie,
@nrennie@fosstodon.org avatar

@terence

This looks amazing! 🤩

nrennie, to random
@nrennie@fosstodon.org avatar

The recording of my "Introduction to machine learning with {tidymodels}" workshop from the R/Pharma Conference is now available! 📹📹

YouTube: https://youtu.be/i-Rm2HUWgnc?feature=shared

A reminder that you can also find the workshop materials on GitHub: https://github.com/nrennie/r-pharma-2023-tidymodels

statstas, to random

Excellent workshop today by @nrennie on customizations and extensions

nrennie,
@nrennie@fosstodon.org avatar

@statstas

Glad you enjoyed the workshop!

andrew, to random
@andrew@fediscience.org avatar

Finally decided to switch from %>% to |> this semester!

nrennie,
@nrennie@fosstodon.org avatar

@EvaMaeRey

Same here. I also still like the magrittr pipe since it can be used more than once on the RHS (useful for getting x and y coords for spatial functions at the same time!)

nrennie, to python
@nrennie@fosstodon.org avatar

If you want to learn some new skills in the new year, why not come along to my "Customizing slides and documents using Quarto extensions" workshop next week on January 11?

🎨 Style HTML and PDF Quarto documents
🛠️ Build your own Quarto extension
💻 Suitable for R, Python, and Julia users

This workshop is part of the "Workshops for Ukraine" series organised by Dariia Mykhailyshyna.

Register: https://sites.google.com/view/dariia-mykhailyshyna/main/r-workshops-for-ukraine#h.gdrb6r6xrczk

nrennie, to random
@nrennie@fosstodon.org avatar

Ending 2023 with a final blog post reflecting on some of the changes I've made to my workflows this year!

📄 template files and repositories
🎨 linting and styling
✍️ Quarto extensions

Link: https://nrennie.rbind.io/blog/four-ways-streamline-r-workflows/

nrennie, to random
@nrennie@fosstodon.org avatar

Yesterday I had the pleasure of presenting at the BPLIM Workshop on Automation of the Research Process hosted by Banco de Portugal!

I talked about styling documents and building extensions with Quarto, and you can find the link to my slides below. Thank you so much to the organisers for the invitation to present!

Slides: https://nrennie.rbind.io/talks/bplim-quarto-extensions/

nrennie, to python
@nrennie@fosstodon.org avatar

Join me on January 11th to learn about styling Quarto documents and building your own extensions! 🛠️

Details: https://sites.google.com/view/dariia-mykhailyshyna/main/r-workshops-for-ukraine#h.gdrb6r6xrczk

nrennie, to random
@nrennie@fosstodon.org avatar

Thanks to everyone who braved the weather on Monday night and came along to the R-Ladies Edinburgh meetup to learn about Quarto!

Thanks to Kasia Banas for organising and inviting me to speak 💜

Slides are available on my website: https://nrennie.rbind.io/talks/rladies-edinburgh-quarto/

nrennie, to random
@nrennie@fosstodon.org avatar

It's time of year again, so I'm resharing last year's blog post on creating your own Wrapped!

https://nrennie.rbind.io/blog/2022-12-03-how-to-make-your-own-rstats-wrapped/

nrennie,
@nrennie@fosstodon.org avatar

@PatrickCoyle Looks fantastic! 🤩

nrennie, to random
@nrennie@fosstodon.org avatar

I'm super excited to be back in Edinburgh on December 11th for R-Ladies Edinburgh where I'll be talking about getting started with Quarto! 💜

Sign up: https://www.meetup.com/rladies-edinburgh/events/297496342/

  • All
  • Subscribed
  • Moderated
  • Favorites
  • anitta
  • mdbf
  • magazineikmin
  • InstantRegret
  • hgfsjryuu7
  • Durango
  • Youngstown
  • slotface
  • everett
  • thenastyranch
  • rosin
  • kavyap
  • khanakhh
  • PowerRangers
  • Leos
  • DreamBathrooms
  • vwfavf
  • ethstaker
  • tacticalgear
  • cubers
  • ngwrru68w68
  • modclub
  • cisconetworking
  • osvaldo12
  • GTA5RPClips
  • normalnudes
  • tester
  • provamag3
  • All magazines