Meng Ye

@mengye.bsky.social

https://yemeng-emma.github.io/ | Nonprofit Researcher, PhD Candidate in Public Policy at Georgia State University, lawyer enthusiastic about stats, Editorial Manager @ijpa2022.bsky.social

Finally got around to removing broom::tidy(), broom::glance(), and broom::augment() from my class examples in favor of parameters::model_parameters(), performance::model_performance() and marginaleffects::predictions() because they're *so nice* for teaching! #rstats #easystats

I don't know how I've missed it because it's *right on the documentation home page*, but if you use {glue} for nice string interpolation in #rstats and you have {stringr} loaded (likely through the tidyverse), you can use str_glue() instead of glue::glue() or loading library(glue) glue.tidyverse.org

Geordi LaForge rejecting this code

library(tidyverse)

penguins |>
  mutate(
    nice = glue::glue(
      "{species} on {island} Island ({body_mass} g)"
    )
  ) |>
  select(nice)
#>                                    nice
#> 1   Adelie on Torgersen Island (3750 g)
#> 2   Adelie on Torgersen Island (3800 g)
#> 3   Adelie on Torgersen Island (3250 g)


Geordi LaForge approving this code

library(tidyverse)

penguins |>
  mutate(
    nice = str_glue(
      "{species} on {island} Island ({body_mass} g)"
    )
  ) |>
  select(nice)
#>                                    nice
#> 1   Adelie on Torgersen Island (3750 g)
#> 2   Adelie on Torgersen Island (3800 g)
#> 3   Adelie on Torgersen Island (3250 g)

This morning my ChatGPT quota was inexplicably exhausted. It took a while but I pieced it together. Voice mode somehow got activated when I went to bed. The bot then engaged in a 10 hour conversation with my snoring dog, answering questions the pup wasn’t asking and praising him for his insight.

This past semester was the most stressful of my academic career. I had 180 students and about half cheated at some point in the semester They submit weekly reflections where the questions are opinion-based, graded only on effort, don't care about grammar SO MANY students submitted ChatGPT essays

Jason Koebler@jasonkoebler.bsky.social · last yr.

I talked to 15 teachers/professors about how AI and ChatGPT is ruining their lives: www.404media.co/teachers-are...