I think I am being stupid, but I can’t find documentation anywhere for the syntax and functions available in formula columns.
In particular, I don’t understand how the join condition (third parameter) of the from_dataset() function works. Suppose I have a schema for outlet (shop branch) data that includes a column “merchant_id”, and I want to look up that id into the merchant (parent company) dataset to include the merchant.name column. The merchant dataset contains columns id and name (amongst others).
Why is the formula for the table join not
from_dataset("merchant", "name", "merchant_id": "id")
?
I am trying that, but it just gives me no values in the target column.
I also have questions about how to use the weighted and dynamic dataset column types - again, I haven’t been able to find documentation that explains how they work.