I want to plot three lines on the same plot like this ``` gnuplot.plot( {"Training", epochs, trainLosses, "-"}, {"Validation", epochs, valLosses, "-"}, {"Test", epochs, testLosses, "-"} ) ``` but with custom colours. Is this possible?