generate_colors# pymc_marketing.plot.generate_colors(n, start=0)[source]# Generate list of colors. Parameters: nintNumber of colors to generate startint, optionalStarting index, by default 0 Returns: list[str]List of colors Examples Generate 5 colors starting from index 1 colors = generate_colors(5, start=1) print(colors) # ['C1', 'C2', 'C3', 'C4', 'C5']