I have plotted a FacetGrid plot of 15 subplots using Python seaborn Library. The number of data points in the x axis are 23 (0 t0 23). I want all of them to be displayed on the x axis. Here is the plot code-
g = sns.FacetGrid(dataset, col="City",col_wrap=4 ,height=4, aspect=1.5)
g = g.map(sns.lineplot, "Block",'temp_error',color='#EE0000')