News

I noticed that the histogram plot fails when the data includes nan values import numpy as np import matplotlib.pyplot as plt data = np.random.random(100) data[10] = np.nan plt.hist(data) -----... Skip ...
Description I would like to create a chart with x values that have non uniform changes but have the plot show the x axis labels with a uniform change. Here is a plot from matplotlib showing the x axis ...