In the ticker module there is a class called MaxNLocator that can take a prune
kwarg.
Using that you can remove the first tick:
import matplotlib.pyplot as plt
from matplotlib.ticker import MaxNLocator
import numpy as np
xx = np.arange(0,5, .5)
yy = np.random.random( len(xx) )
plt.plot(xx,yy)
plt.gca().xaxis.set_major_locator(MaxNLocator(prune="lower"))
plt.show()
Result:
Related Contents:
- How do I change the size of figures drawn with Matplotlib?
- Remove xticks in a matplotlib plot?
- Matplotlib (pyplot) savefig outputs blank image
- Label axes on Seaborn Barplot
- Aligning rotated xticklabels with their respective xticks
- Matplotlib transparent line plots
- matplotlib get ylim values
- How to plot a histogram using Matplotlib in Python with a list of data?
- surface plots in matplotlib
- Python Matplotlib Y-Axis ticks on Right Side of Plot
- Matplotlib discrete colorbar
- matplotlib/seaborn: first and last row cut in half of heatmap plot
- How to maximize a plt.show() window using Python
- How to dynamically update a plot in a loop in IPython notebook (within one cell)
- Getting vertical gridlines to appear in line plot in matplotlib
- How to print Y axis label horizontally in a matplotlib / pylab chart?
- Pip install Matplotlib error with virtualenv
- How is order of items in matplotlib legend determined?
- How can I plot NaN values as a special color with imshow in matplotlib?
- Title for matplotlib legend
- gnuplot vs Matplotlib [closed]
- GridSpec with shared axes in Python
- How do I equalize the scales of the x-axis and y-axis?
- Plotting dates on the x-axis
- Plot width settings in ipython notebook
- When I use matplotlib in jupyter notebook,it always raise ” matplotlib is currently using a non-GUI backend” error?
- My matplotlib.pyplot legend is being cut off
- Does matplotlib have a function for drawing diagonal lines in axis coordinates?
- Python “TypeError: unhashable type: ‘slice'” for encoding categorical data
- How to read image file from S3 bucket directly into memory?
- find length of sequences of identical values in a numpy array (run length encoding)
- Remove seaborn lineplot legend title
- Python saving multiple figures into one PDF file
- Matplotlib python show() returns immediately
- Creating a Colormap Legend in Matplotlib
- Plot multiple columns of pandas DataFrame using Seaborn
- Is it possible to add a string as a legend item
- How to change the current axis instance (i.e., gca()) in matplotlib
- more than 9 subplots in matplotlib
- Matplotlib not using latex font while text.usetex==True
- How to increase/reduce the fontsize of x and y tick labels
- Annotate Time Series plot
- How to set the line width of error bar caps
- Python basemap module impossible to import
- How to add different graphs (as an inset) in another python graph [duplicate]
- Wrapping long y labels in matplotlib tight layout using setp
- How to clear memory completely of all matplotlib plots
- Inserting a degree symbol into python plot
- Extract csv file specific columns to list in Python
- RuntimeError: Failed to process string with tex because latex could not be found