For plots that allow for more than one YVar, you can now selectively choose which variables you'd like transformed and which ones to leave alone. Here is how it works:
Example with multiple YVars and a partial list of transformations
1. Define YVar: YVar = ['Daily Liters', 'Daily Units', 'Daily Revenue']
2. Define YVarTrans: YVarTrans = [None, None, 'logmin']
In the example above, only Daily Revenue will be transformed while Daily Liters and Daily Units will be left alone. Order matters for the list of transformations: they need to match the order of the YVar's. Supply the value None for variables you want to leave alone.