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
Currently, baseline methods do not consistently return the same object type:
assign_baseline("ell", data) returns an integer
assign_baseline("program", data) returns a data.frame
assign_baseline("grade", data) returns a data.frame
This inconsistency is not exposed to users since get_baseline is internal only, but it should be resolved. Least common denominator solution is to always return the original data with baseline appended.
The text was updated successfully, but these errors were encountered:
Currently, baseline methods do not consistently return the same object type:
assign_baseline("ell", data)
returns an integerassign_baseline("program", data)
returns a data.frameassign_baseline("grade", data)
returns a data.frameThis inconsistency is not exposed to users since
get_baseline
is internal only, but it should be resolved. Least common denominator solution is to always return the original data with baseline appended.The text was updated successfully, but these errors were encountered: