Frank Gootjes
frankgootjes.bsky.social
Frank Gootjes
@frankgootjes.bsky.social
Post-doc at University of Amsterdam fascinated by negative attitudes towards our own societies
Was this thread created by a LLM? I find it hard to tell :) Great work!
November 7, 2025 at 3:59 PM
Reposted by Frank Gootjes
Ik word er ook echt heel bezorgd van. Dit is het soort berichtgeving over universiteiten dat de grondslag heeft gelegd voor Trumps beleid.
September 16, 2025 at 8:11 AM
Wouldn't it be more neat to add a class to the result object and register a custom print statement for this new class?
September 19, 2024 at 8:09 PM
Wat is de website om in korte tijd te behappen hoe de partijen (en welke!) er voorstaan in Europa?
May 22, 2024 at 8:06 PM
Night owls
March 12, 2024 at 3:24 PM
tibble(a=1:2) %>% rowwise() %>% mutate(result = list(foo())) %>% unnest_wider(result)
November 9, 2023 at 8:32 PM
data %>% rowwise() %>% mutate(result = list(foo())) %>% unnest_wider(result)
November 9, 2023 at 8:31 PM
I think you are looking for rowwise()
If your rows are uniquely identified by a variable (such as an ID variable), you can also do group_by() using that variable which is in this case identical to rowwise()
November 9, 2023 at 8:28 PM