Viewing profile — latent-person
latent-person
HN member- Joined
- Wed, Jul 22, 2026, 8:44 PM UTC
- HN karma
- 5
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About latent-person
No profile information was provided.
Recent public activity
-
comment
Comment #49357388
Not OP, but here is an example using tidyverse (I leave the meaning of it to you; should be clear without any R knowledge): purchases |> group_by(country) |> filter(amount summariz…
-
comment
Comment #49356228
You should look into dplyr [1] (part of the tidyverse) in R to see how intuitive this can get. You can do math directly on columns: df |> dplyr::mutate(profit = Amount * Price - Lo…
-
comment
Comment #49351753
> The bare R experience is not that great Why do you say that? Base R is arguably nicer to work with data than pandas is for example. Happy to provide specific examples to prove my…