Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

matplotlib remove ticks and lines

fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot([1],[1])
ax.tick_params(axis=u'both', which=u'both',length=0)
plt.show()
Comment

PREVIOUS NEXT
Code Example
Python :: how to get the current date hour minute month year in python 
Python :: between date pandas 
Python :: scroll to element python selenium 
Python :: matplotlib insert text 
Python :: make length string in pandas 
Python :: list files in directory python 
Python :: python copy file to another directory 
Python :: importying listviewin django 
Python :: string with comma to int python 
Python :: python: transform as type numeirc 
Python :: tkinter maximum window size 
Python :: how to ask for input in python 
Python :: next prime number in python 
Python :: random forest python 
Python :: python print code 
Python :: order pandas dataframe by column values 
Python :: logging python utf-8 
Python :: find duplicated rows with respect to multiple columns pandas 
Python :: proxy selenium python 
Python :: how to convert a am pm string to 24 hrs time python 
Python :: remove multiple space python 
Python :: draw circles matplotlib 
Python :: sklearn mean square error 
Python :: get self file name in python 
Python :: datetime one week ago python 
Python :: install gtts 
Python :: how to convert kg to g using python 
Python :: how to order ints from greatest to least python 
Python :: how to install panda3D 
Python :: virtualenv in mac 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =