I am using version3. It just won´t work:
width = (RMI > 86) ? 1 : 4
plot(RMI, title="RMI", linewidth=width, color=col, transp=0)
error message is something like
line 71: Cannot call plot with arguments...
I am using version3. It just won´t work:
width = (RMI > 86) ? 1 : 4
plot(RMI, title="RMI", linewidth=width, color=col, transp=0)
error message is something like
line 71: Cannot call plot with arguments...
Copyright © 2021 Jogjafile Inc.
You can get around this by using two plots and by alternating their color/transparency according to the argument. The linewidth argument needs to be either an explicitly defined integer, ie
linewidth = 4or obtain from an input variable iewidth = input(4)