Jobs at IJulia. Desperately trying to create a custom color palette. Tried the line:
matplotlib.colors.ListedColormap([(1,0,0),(0,1,0),(0,0,1)],"A")
which led to the following error
The PyObject type does not have field colors when loading In [16], in the expression starting on line 1
which apparently means that I cannot use matplotlib directly, but only the functions that are in PyPlot.
I cannot enable matplotlib with import (since this is not valid in IJulia). I noted that others have helped in solving such problems, but this does not solve my problem.
source share