Matt Kmiecik
@mattkmiecik.bsky.social
Neuroscientist studying Parkinson's disease | check out my #rstats website: https://mattkmiecik.com/
Certainly! I wouldn't recommend going to GUI if the data will change.
June 14, 2025 at 7:32 PM
Certainly! I wouldn't recommend going to GUI if the data will change.
Yes! Don't get me wrong, everything is possible in ggplot2 and it's extensions. But I've found it nice to polish off figures in a GUI when at the final stages or experimenting with different aesthetics/placement, etc.
June 14, 2025 at 4:32 PM
Yes! Don't get me wrong, everything is possible in ggplot2 and it's extensions. But I've found it nice to polish off figures in a GUI when at the final stages or experimenting with different aesthetics/placement, etc.
Is there a formal way to give yourself permission or is this implied by CC-BY?
June 11, 2025 at 2:41 AM
Is there a formal way to give yourself permission or is this implied by CC-BY?
Reposted by Matt Kmiecik
Personally I prefer using datawizard::standardize(), and specifically using it *in the formula*.
So
mtcars$hp_z <- scale(mtcars$hp)
mpg ~ hp_z
Becomes
mpg ~ standardize(hp)
This solves both issues you raise in your post.
#rstats @easystats.bsky.social
So
mtcars$hp_z <- scale(mtcars$hp)
mpg ~ hp_z
Becomes
mpg ~ standardize(hp)
This solves both issues you raise in your post.
#rstats @easystats.bsky.social
June 4, 2025 at 7:33 PM
Personally I prefer using datawizard::standardize(), and specifically using it *in the formula*.
So
mtcars$hp_z <- scale(mtcars$hp)
mpg ~ hp_z
Becomes
mpg ~ standardize(hp)
This solves both issues you raise in your post.
#rstats @easystats.bsky.social
So
mtcars$hp_z <- scale(mtcars$hp)
mpg ~ hp_z
Becomes
mpg ~ standardize(hp)
This solves both issues you raise in your post.
#rstats @easystats.bsky.social
Nice! Thanks for commenting about datawizard::standardize(). It looks like a great solution 😀
June 4, 2025 at 8:07 PM
Nice! Thanks for commenting about datawizard::standardize(). It looks like a great solution 😀
Here's one in the other direction! mattkmiecik.substack.com/p/my-start-w...
My start with R
The programming language that made me a better scientist
mattkmiecik.substack.com
June 2, 2025 at 1:06 AM
Here's one in the other direction! mattkmiecik.substack.com/p/my-start-w...