Live data from Hacker News

Viewing profile — latent-person

latent-person

HN member
Joined
Wed, Jul 22, 2026, 8:44 PM UTC
HN karma
5
Public activity
3 items

About latent-person

No profile information was provided.

Recent public activity

  1. 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…

  2. 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…

  3. 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…