You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately there is no way to do a SQL-like join across datasets on SolveBio, but you can use our annotation system to pull data together from various datasets. There are some docs available here:
Could you document how one could annotate the flights table with the engine count from the plane table? This dataset is widely used to demonstrate techniques in the tidy verse.
Hi,
Could you provide an example of how to annotate or join across datasets using the R client?
For example, how could I replicate something like below if I had the datasets "planes" and "flights" saved to a vault?
library(nycflights13)
library(dplyr)
planes%>%
filter(engines==2)%>%
left_join(flights)
Thanks!
Iain
The text was updated successfully, but these errors were encountered: