Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
apps:datastudio:comparescenarioscriptdetails [2022/01/11 10:32] freddiapps:datastudio:comparescenarioscriptdetails [2022/01/11 10:33] freddi
Line 97: Line 97:
 Now the timespteps match again. Otherwise you would compare different timesteps. Now the timespteps match again. Otherwise you would compare different timesteps.
  
-== Advanced Settings ==+=== Advanced Settings ===
  
-There is the option that you compare maximum or minimum values instead of the mean values. To do so, change lines 133 - 139 (in current script version) as follows: +There is the option to compare maximum or minimum values instead of the mean values. To do so, change lines 133 - 139 (in current script version) as follows: 
-= Mean vallues (default) =+== Mean vallues (default) ==
 <code python> <code python>
 #vals1 = (np.nanmin(data1, axis=1), "Min.") #vals1 = (np.nanmin(data1, axis=1), "Min.")
Line 111: Line 111:
 </code> </code>
  
-= Maximum values =+== Maximum values ==
 <code python> <code python>
 #vals1 = (np.nanmin(data1, axis=1), "Min.") #vals1 = (np.nanmin(data1, axis=1), "Min.")
Line 122: Line 122:
 </code> </code>
  
-= Minimum values = +== Minimum values =
 <code python> <code python>
 vals1 = (np.nanmin(data1, axis=1), "Min.") vals1 = (np.nanmin(data1, axis=1), "Min.")