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
In #1196, we refactored how as_data_set() deals with data frame, ev and evd objects.
When an input object is like this
data.frame(time=0, RATE=5, rate=2)
We decide to go with lower case naming scheme and RATE becomes rate.1 and you'll get a warning for missing values in the final object (no missing values warning if all objects are like this, but you'll still get rate.1).
Let's do another pass where we check for mixed names and give a more specific warning sooner.
The text was updated successfully, but these errors were encountered:
Summary
In #1196, we refactored how
as_data_set()
deals with data frame, ev and evd objects.When an input object is like this
We decide to go with lower case naming scheme and
RATE
becomesrate.1
and you'll get a warning for missing values in the final object (no missing values warning if all objects are like this, but you'll still getrate.1
).Let's do another pass where we check for mixed names and give a more specific warning sooner.
The text was updated successfully, but these errors were encountered: