What is antialiased in matplotlib.collections and how do you set the parameter for it?
What is antialiased in matplotlib.collections and how do you set the parameter for it?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
antialiasedkeyword argument controls whether or not a particular matplotlib artist (e.g. line, polygon, etc) is drawn with antialising or not.As an example, notice the difference in the two plots below:
Non-antialiased plotting will be faster, so if you’re plotting a large amount of data, it can be worthwhile to turn it off.