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
The body of new_equations() starts cleaning up
the allodb::equations. If any such cleaning is
necessary, then it would be best to do it once
when we create allodb::equations rather than
every time a user calls new_equations(). This
should also help simplify new_equations(),
which already seems to do too much work.
Here is a piece of code that could go elsewhere
## open the equation table and get it in the right format ####equations_orig<-allodb::equations
colnames(equations_orig) <- tolower(colnames(equations_orig))
new_equations<-equations_orig
The body of new_equations() starts cleaning up
the allodb::equations. If any such cleaning is
necessary, then it would be best to do it once
when we create allodb::equations rather than
every time a user calls new_equations(). This
should also help simplify new_equations(),
which already seems to do too much work.
Here is a piece of code that could go elsewhere
Here are the columns we could lowercase:
Created on 2021-10-09 by the reprex package (v2.0.1)
--
Another piece of code that could go elsewhere
This could be also done where we create
allodb::equations
, and maybe replaced by a simpler approach, e.g.:Created on 2021-10-09 by the reprex package (v2.0.1)
The text was updated successfully, but these errors were encountered: