spineplot is a package for Stata described in this Stata Journal article. It can be installed with
The help file includes this example:
When I run this command on my PC I get this graph:

Could you please confirm if you get the same graph or if this is supposed to look different? The other examples from the help file produce graphs that look as I would expect. Here is another example:

I am asking because I noticed that some old code of mine that uses spineplot is now broken and produces graphs that look similar to the first graph above: the rectangle is empty and all labels on the lower axis have been pushed to the left side. Here is a graph that I created in 2016:

Here is the graph that I get today with the same do-file and same dataset used to create the graph above:

I tried Stata 13.1 and 14.2 with the same result. I even went back to spineplot 1.0.4, which I had used last year (the current version is 1.1.1), but the graph is still empty. The only reason I can think of is a recent update to Windows 10 version 1703 but it seems odd that this would have an effect on spineplot graphs. I have no problems with other Stata graph commands.
Code:
ssc install spineplot
Code:
sysuse auto spineplot foreign rep78, xti(frequency, axis(1)) xla(0(10)60, axis(1)) xmti(1/69, axis(1))
Could you please confirm if you get the same graph or if this is supposed to look different? The other examples from the help file produce graphs that look as I would expect. Here is another example:
Code:
spineplot foreign rep78
I am asking because I noticed that some old code of mine that uses spineplot is now broken and produces graphs that look similar to the first graph above: the rectangle is empty and all labels on the lower axis have been pushed to the left side. Here is a graph that I created in 2016:
Here is the graph that I get today with the same do-file and same dataset used to create the graph above:
I tried Stata 13.1 and 14.2 with the same result. I even went back to spineplot 1.0.4, which I had used last year (the current version is 1.1.1), but the graph is still empty. The only reason I can think of is a recent update to Windows 10 version 1703 but it seems odd that this would have an effect on spineplot graphs. I have no problems with other Stata graph commands.
Comment