Advertisement · 728 × 90

Posts by Meng Ye

Hey, use it for the dolphin project to add more years!

6 days ago 2 0 0 0
Video

💙💛 Lá Fhéile Pádraig sona daoibh!

1 month ago 4 8 0 0
Calculating pi from coin flips (without randomness)
Calculating pi from coin flips (without randomness) YouTube video by Stand-up Maths

This video is *bananas*—you can estimate π from a ton of random coin flips bc the expected prop of heads/total after 50%+ of the flips are heads = π/4

Here's an #rstats version I made of Matt's Python code in the video gist.github.com/andrewheiss/...

With 10 million random flips I got 3.131381

1 month ago 64 12 5 0

Yay! Made me look forward.

1 month ago 1 0 0 0
Interactive resources

With the power of OJS and Quarto, I’ve created a few interactive websites to illustrate trickier statistical concepts when teaching. Check them out (and adapt and copy as much as you want!)

With links to three different websites (accessible at the main link in the post)

Interactive resources With the power of OJS and Quarto, I’ve created a few interactive websites to illustrate trickier statistical concepts when teaching. Check them out (and adapt and copy as much as you want!) With links to three different websites (accessible at the main link in the post)

Finally got around to adding fancy links to my different interactive teaching websites for showing things like p-hacking, p-value interpretations, and (still-in-draft-form) DAGs at www.andrewheiss.com/teaching/ #rstats #QuartoPub #statsky

1 month ago 133 21 1 1
Post image

📣 IJPA Award Highlight
Congratulations to Mr. Nasir Uddin on receiving the #ASPA International Chapter Best Student Paper Award for his IJPA article “Impact of Crime and Insecurity on Citizen Trust in Public Institutions: Evidence from Bangladesh” (2025).
tandfonline.com/doi/full/10....

1 month ago 1 1 0 0

Various stuff happened during that time (that impacted both locations)?

1 month ago 0 0 0 0
PoliSci 813

The Spring 2026 course website for my grad causal inference class is up and running. Was inspired by @andrew.heiss.phd and @mattblackwell.bsky.social to move my materials over to a standalone site and use as little of Canvas as possible.

www.antonstrezhnev.com/ps813/

2 months ago 68 10 7 1
Advertisement

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

2 months ago 79 6 4 2
Post image

🌟 Thank you to our reviewers!
As one of #IJPA’s Best Reviewers of 2025, we sincerely thank Ju Won Park from the University of Utah for the valuable contributions to the journal.
Check out Ju Won Park’s profile here 📷
scholar.google.com/citations?hl...

3 months ago 1 1 0 0
Post image

🌟 Thank you to our reviewers!
As one of #IJPA’s Best Reviewers of 2025, we sincerely thank Frank Ohemeng from Concordia University for the valuable contributions to the journal.
Check out Frank Ohemeng’s profile here 🙌scholar.google.com/citations

3 months ago 1 1 0 0

So cute!!!

3 months ago 1 0 0 0

This makes a good question for the bar exam.

4 months ago 6 0 0 0
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)

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)

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

4 months ago 101 15 4 0

😂

5 months ago 4 0 0 0
Advertisement
Preview
GitHub - hadley/genzplyr: dplyr but make it bussin fr fr no cap dplyr but make it bussin fr fr no cap. Contribute to hadley/genzplyr development by creating an account on GitHub.

Do you teach #rstats? Do your students complain about how lame and old-fashioned dplyr is? Don't worry: I have the solution for you: github.com/hadley/genzp....

genzplyr is dplyr, but bussin fr fr no cap.

5 months ago 460 167 42 54
Post image Post image Post image Post image

The AYSPS is excited to promote our doctoral students who are currently on the academic job market. Check out all their amazing research and hard work put in at Georgia State! 💙

5 months ago 1 1 0 0
Map showing points in Utah, North Carolina, Georgia, Jordan, Italy, and Egypt, with great circle paths plotted between them

Map showing points in Utah, North Carolina, Georgia, Jordan, Italy, and Egypt, with great circle paths plotted between them

The {sf} package continues to blow my mind with how easy it is to make maps with #rstats and ggplot (code for that map here gist.github.com/andrewheiss/...)

5 months ago 97 9 2 0
Venn diagrams as jack-o-laterns showing trick/treat logicals: OR, AND, XOR, NOR, NAND, and XNOR

Venn diagrams as jack-o-laterns showing trick/treat logicals: OR, AND, XOR, NOR, NAND, and XNOR

Halloween logicals, still the best 10/31 venn

5 months ago 232 74 1 2
My 11-year-old sitting with her pile of Halloween candy, sorting it into a bar graph

My 11-year-old sitting with her pile of Halloween candy, sorting it into a bar graph

We have progressed from data collection to data analysis.

5 months ago 34677 4111 979 366

We had a great time!

5 months ago 1 0 0 0
Post image Post image Post image

📚 The IJPA Editorial Team had a great time at the ABFM Conference in Atlanta! 🎉 Grateful for the inspiring discussions and connections with colleagues across the public administration community. 🤝 #ABFM2025 #IJPA

5 months ago 1 1 1 0
Advertisement

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.

6 months ago 3287 570 91 81

Happy birthday! And it's on the badge!

7 months ago 2 0 0 0

Woohoo! You went to Data Disneyland!

7 months ago 1 0 0 0

overconfident in your visual cognition

7 months ago 1 0 0 0
Post image

Erica made a Lego phone like this today!! @andrew.heiss.phd

7 months ago 0 0 0 0

Congratulations! The article has also been selected by the editors @ijpa2022.bsky.social to have free access until the end of October.

8 months ago 1 0 0 0
Post image

🎉 Great news from Google Scholar Metrics 2025!
IJPA has climbed from #8 to #7 among all PA journals globally! 🔝📈Proud to see IJPA continue its leading role in the field.
See the full rankings here 👉 scholar.google.com/citations?vi...
#PublicAdministration #ScholarMetrics

8 months ago 1 1 0 0

Scary. This is the CVS I use to get my prescriptions all the time and my daugher's school is just one mile from there.

8 months ago 1 0 0 0