Resolved: error in Cold ad sets
I just write the code by following your provided source code, but it's shown error. Could you explain to me?
2 answers ( 1 marked as helpful)
Super learner
This user is a Super Learner. To become a Super Learner, you need to reach Level 8.
Hey Panthakarn:
The issue here is that you need to use two different matplotlib methods that are spelled almost identically. Your first use of "ax.get_xticklabels" on line 12 should actually be "ax.set_xticklabels."
Leave the second reference (within the parentheses) to "ax.get_xticklabels" as-is and you should be fine.
The issue here is that you need to use two different matplotlib methods that are spelled almost identically. Your first use of "ax.get_xticklabels" on line 12 should actually be "ax.set_xticklabels."
Leave the second reference (within the parentheses) to "ax.get_xticklabels" as-is and you should be fine.
Thanks for your promt response. It's helpful.