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
Running add_label_column!(df1::DataFrame,df2::DataFrame,s::Symbol) interprets s as the ID column shared by df1 and df2. I think it makes more sense to interpret this as the label column of df2. In practice, df2 will have many extraneous columns, so this the label ID should always be specified. In contrast, the ID column can often be inferred as the first column of df, or one with an ID label.
The text was updated successfully, but these errors were encountered:
Running
add_label_column!(df1::DataFrame,df2::DataFrame,s::Symbol)
interpretss
as the ID column shared bydf1
anddf2
. I think it makes more sense to interpret this as the label column ofdf2
. In practice,df2
will have many extraneous columns, so this the label ID should always be specified. In contrast, the ID column can often be inferred as the first column ofdf
, or one with an ID label.The text was updated successfully, but these errors were encountered: