home.social

Search

24 results for “hadleywickham”

  1. @hadleywickham Background: In companion w %dofuture% (mastodon.social/@henrikbengtss), I'd like to introduce:

    z <- future_foreach2(X=1:3, Y=3:1, FUN=function(x, y) {
    sqrt(x/y)
    })

    to be the same as:

    z <- foreach(X=1:3, Y=3:1) %dofuture% {
    sqrt(x/y)
    }

    In the #futureverse, prefix 'future_' indicates a duality, e.g. future_lapply() for lapply() & future_map() for purrr::map(). So, we cannot call it future_foreach(), because that would incorrectly suggest it is a duality of foreach()

    2/

  2. I mostly followed the 2nd edition of "R Packages" by @hadleywickham @jennybryan with a few minor tweaks to account for the differences between GitHub and Bitbucket/Jira

    r-pkgs.org/release.html

    I highly recommend this book for anyone who is writing or maintaining R code! #rstats #statsodon

  3. I'm not sure where the discussions are happening but I'm curious about one slide in particular from @hadleywickham's talk

    youtube.com/live/ctc2kx3LxG8

    why the addition of 0 for each term of the multiplication? Is it to have NA values fail early? I was hoping it would be explained but not that I saw

  4. Want to learn about {purrr} & the updates in the 1.0.0 release?

    In this video @hadleywickham introduces {purrr} & shares some of his favorite highlights of this release (hint: progress bars, better error messages, some new map & list functions, & more).

    youtu.be/EGAs7zuRutY

    Whether you’re a “cat”-egorical beginner or a seasoned functional programming “purr”-fessional, you can pounce on this opportunity to check out what’s new in {purrr}.

  5. Episode 215 of the @rstats @rweekly Highlights Podcast is out! serve.podhome.fm/episodepage/r

    🤖 AI Newsletter @simonpcouch @sara-altman.bsky.social
    🎙️ The Test Set Podcast @mchow.com @hadleywickham @wesmckinney.com
    🤔 Haskell for data science @jonocarroll

    Looking for a new way of giving this holiday season? How about a fun boost with a modern podcast app as a virtual stocking stuffer! Learn more about these apps at newpodcastapps.com

    h/t @mike_thomas & @parmsam 🙏

    #RStats #DataScience #V4V

  6. Hello ! I'm facilitating a new free @DSLC Advanced R adv-r.hadley.nz cohort soon! It's been 5+ years since I read this excellent book by @hadleywickham , so I'm giving it a re-read. Let's learn to embrace {{ tidy evaluation }}, purrr::reduce() repetition, and count S/R systems!

    Join the DSLC.io Slack, then navigate to the -advr channel!

    BTW, I plan to cover {{ and in the club, even though they didn't make it into the book!

  7. #rstats #lavaan structural equation modeling -- a postdoc developer position at University of Amsterdam werkenbij.uva.nl/en/vacancies/. I am familiar with the package although not with all of the internal class structures and stuff. I would be comfortable working on this after the two book clubs on @hadleywickham's Advanced R and R Packages through the @DSLC community led by @jonthegeek ... but you also need to know the freaking matrix calculus to follow Satorra's asymptotic theory.

  8. Really enjoyed . I was lovely to see so many friendly faces and to re-connect with the world-wide R community 😀

  9. I love Hadley Wickham and his amazing work, I really do.

    But I hate tibbles.

    I know they can probably do stuff (I think they're supposed to do some of the data.table() stuff?)

    But tibbles broke data.frame indexing, and I always spend hours debugging shit to find out it's because tibbles broke indexing.

    #Rstats #tibbles #theTroubleWithTibbles

  10. 📜 Tidy Data [2014]

    By: Hadley Wickham

    Hadley Wickham's paper, "Tidy Data," published in September 2014, provides foundational principles for organizing and cleaning data, which has had considerable influence in the field of data science.

    📖 raw.githubusercontent.com/pape

    #paperswelove #research #compsci

  11. This is cool!

    R-Ladies Buenos Aires + R en Buenos Aires ran a community reading club on Hadley Wickham’s book Mastering Shiny (he’s on the R Consortium board).

    Peer-led sessions turned solo intent into shared progress.

    Details: r-consortium.org/posts/learnin

    #rstats #Shiny #RCommunity @RLadiesGlobal

  12. This is cool!

    R-Ladies Buenos Aires + R en Buenos Aires ran a community reading club on Hadley Wickham’s book Mastering Shiny (he’s on the R Consortium board).

    Peer-led sessions turned solo intent into shared progress.

    Details: r-consortium.org/posts/learnin

    @RLadiesGlobal

  13. This is cool!

    R-Ladies Buenos Aires + R en Buenos Aires ran a community reading club on Hadley Wickham’s book Mastering Shiny (he’s on the R Consortium board).

    Peer-led sessions turned solo intent into shared progress.

    Details: r-consortium.org/posts/learnin

    #rstats #Shiny #RCommunity @RLadiesGlobal

  14. This is cool!

    R-Ladies Buenos Aires + R en Buenos Aires ran a community reading club on Hadley Wickham’s book Mastering Shiny (he’s on the R Consortium board).

    Peer-led sessions turned solo intent into shared progress.

    Details: r-consortium.org/posts/learnin

    #rstats #Shiny #RCommunity @RLadiesGlobal

  15. This is cool!

    R-Ladies Buenos Aires + R en Buenos Aires ran a community reading club on Hadley Wickham’s book Mastering Shiny (he’s on the R Consortium board).

    Peer-led sessions turned solo intent into shared progress.

    Details: r-consortium.org/posts/learnin

    #rstats #Shiny #RCommunity @RLadiesGlobal

  16. When the day after your #Rpackage goes live on CRAN, with no promotion whatsoever, Hadley Wickham himself files a GitHub issue with a suggestion 🤓. github.com/e-kotov/rJavaEnv

  17. @lwpembleton it was gradual for me. Grad school used it for stats classes and my advisor suggested to rewrite a standalone population genetics program in R. He then suggested to make it into a package and sent me to one of Hadley Wickham’s trainings (pre-RStudio). I then found out about #knitr and stated making websites in R and was hooked.