gmwm
gmwm copied to clipboard
Optimize Graphing
To do list:
- Begin process of abstracting parts of the imu graphing procedure to align with multivariate time series.
- Move out parameter checks into their own callable function.
- Switch to *apply's from for loops when possible.
- Use roxygen2 templates
- Rewrite the addSpaceIfDuplicate function to use
duplicates()
to remove a double for loop.... - ...
Regarding 2., one can modify environments like so:
m = function(){
g()
wyang
}
g = function(o = parent.frame()){
assign("wyang", "Wenchao", envir = o)
}