Frank Gootjes
@frankgootjes.bsky.social
230 followers 210 following 7 posts
Post-doc at University of Amsterdam fascinated by negative attitudes towards our own societies
Posts Media Videos Starter Packs
Reposted by Frank Gootjes
saskiabonjour.bsky.social
Ik word er ook echt heel bezorgd van. Dit is het soort berichtgeving over universiteiten dat de grondslag heeft gelegd voor Trumps beleid.
frankgootjes.bsky.social
Sinds wanneer doet NOS mee aan de verkiezingscampagne van de FvD? Er worden hier amper feiten genoemd, Baudet aangehaald als martelaar van de vrijheid van meningsuiting en als een Nederlandse Kirk nos.nl/nieuwsuur/ar...
'Nederlandse universiteiten schuwen debat met andersdenkenden'
Is er op Nederlandse universiteiten nog wel ruimte voor een open debat? "Radicale vrijheid van meningsuiting bestaat in Nederland niet."
nos.nl
frankgootjes.bsky.social
Wouldn't it be more neat to add a class to the result object and register a custom print statement for this new class?
frankgootjes.bsky.social
Wat is de website om in korte tijd te behappen hoe de partijen (en welke!) er voorstaan in Europa?
frankgootjes.bsky.social
tibble(a=1:2) %>% rowwise() %>% mutate(result = list(foo())) %>% unnest_wider(result)
frankgootjes.bsky.social
data %>% rowwise() %>% mutate(result = list(foo())) %>% unnest_wider(result)
frankgootjes.bsky.social
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()