Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to remove axis in matplotlib

for i in range(len(COLUMNS)):
    for j in range(len(COLUMNS)):
        # If on the upper triangle
        if i < j:
            axes[i, j].remove()

# See the chart now
fig
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #remove #axis #matplotlib
ADD COMMENT
Topic
Name
6+3 =