Commit fe302564 authored by Andreas Schmidt's avatar Andreas Schmidt
Browse files

More colors and symbols for multi correlation.

parent a96c866f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,8 +17,8 @@ def corr_multi(dfs, duration, **kwargs):
    for df in dfs:
        names.append(df.name)

    colors = ["green","blue","orange"]
    markers = ["v", "^", ">", "<"]
    colors = ["green","blue","orange","purple","red","pink"]
    markers = ["v", "^", ">", "<", "+"]
    for idf, df in enumerate(dfs):
        corr(df, duration, color=colors[idf % len(colors)],
             marker=markers[idf % len(markers)], **kwargs)