| build_joint | R Documentation |
Build a fuzzy-join joint data.frame via LLM
build_joint(x, y, key1, key2, ...)
x |
a data.frame to be joined on the lhs. |
y |
a data.frame to be joined on the rhs. |
key1 |
string, name of the key column of data.frame x waiting for pairing. |
key2 |
string, name of the key column of data.frame y waiting for pairing. |
... |
extra params passed to chat_llm() |
a 2-column data.frame mapping values from key1 to key2.
build_joint(
x = data.frame(x = c("01","02","04")),
y = data.frame(y = c("January","Feb","May")),
key1 = "x", key2 = "y"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.