search for: prefix_string

Displaying 3 results from an estimated 3 matches for "prefix_string".

2008 Jul 14
1
Function to create variables with prefix
...like a way to consistently generate and name versions of the variables. The function would take a data.frame, an array of variables, and a prefix string. It performs a transformation on the variables (e.g. logs and scales), and creates new variables with the same names as the inputs, but with the prefix_string prepended. So, a sample call would look like: myfunction(mydata, myvariables, "norm_") And if myvariables contained variables named "var1", "var2", etc., the function would generate: mydata$norm_var1 mydata$norm_var2 Thanks, Moira [[alternative HTML version dele...
2019 Sep 03
0
[PATCH v2 07/27] drm/dp_mst: Add sideband down request tracing + selftests
Unfortunately the DP MST helpers do not have much in the way of debugging utilities. So, let's add some! This adds basic debugging output for down sideband requests that we send from the driver, so that we can actually discern what's happening when sideband requests timeout. Since there wasn't really a good way of testing that any of this worked, I ended up writing simple selftests
2019 Sep 03
50
[PATCH v2 00/27] DP MST Refactors + debugging tools + suspend/resume reprobing
This is the large series for adding MST suspend/resume reprobing that I've been working on for quite a while now. In addition, I: - Refactored and cleaned up any code I ended up digging through in the process of understanding how some parts of these helpers worked. - Added some debugging tools along the way that I ended up needing to figure out some issues in my own code Note that