Thanks as ever to Kit Baum, the stripplot package has been updated. The update consists of a new command strip, which requires Stata 9 or higher.
stripplot is still included -- I don't want to break any scripts that might be using it -- but stripplot has reached the end of its road, and I won't enhance it in future (although I will try to fix any further bugs reported).
strip is stripplot reduced in code complexity. So why did I do that?
stripplot was born as onewplot in 1999 (the rather odd name had to fit within the filename.ext pattern for filenames in MS-DOS -- filenames could be shorter, but not longer). It was renamed as onewayplot in 2003 on being rewritten for Stata 8, and then renamed stripplot in 2005.
stripplot has accumulated options over the years, but I becaime dissatisfied with it for various reasons. The options now removed in the cut-down version strip concerned extras: adding confidence interval bars, boxplots of various styles, Tufte-style quartile or midgap plots. and reference lines. The loss of functionality is much less than might be guessed, as you can still add details to the graphs through its addplot() option.
Confidence interval calculations in stripplot were geared to ci as it existed before Stata 14.1, when the syntax was changed. An updafe of same kind was overdue. It may seem odd that the update consisted of removing the options, but what stripplot can do (and more) is so far as I am concerrned better done by reversing the order of operations.
cisets from SSC (and the Stata Journal from 26(2) -- the next issue, due around June) produces confidence interval sets for various summary measures, after which confidence intervals can be plotted directly. https://www.statalist.org/forums/for...-interval-sets explains and exemplifies in more detail, as does that paper forthcoming in the Stata Journal.
The other options that have been removed were not outdated, but the main reason for removing them was a sense that the syntax had become too complicated. The help file still includes a large number of references in its territory, largely because of a personal habit of using help files as my notes on projects based on Stata commands, some of which get written up in due course as papers in the Stata Journal. If I think up new options or new examples or encounter new references, they tend to get added to the help file.
The help for strip includes the code for 30 graph examples, which can be run directly using the ancillary file strip_examples.do
You can install strip by installing the stripplot package for the first time or updating your installation if you've installed it before.
Here is a sampler of graphs from strip.
stripplot is still included -- I don't want to break any scripts that might be using it -- but stripplot has reached the end of its road, and I won't enhance it in future (although I will try to fix any further bugs reported).
strip is stripplot reduced in code complexity. So why did I do that?
stripplot was born as onewplot in 1999 (the rather odd name had to fit within the filename.ext pattern for filenames in MS-DOS -- filenames could be shorter, but not longer). It was renamed as onewayplot in 2003 on being rewritten for Stata 8, and then renamed stripplot in 2005.
stripplot has accumulated options over the years, but I becaime dissatisfied with it for various reasons. The options now removed in the cut-down version strip concerned extras: adding confidence interval bars, boxplots of various styles, Tufte-style quartile or midgap plots. and reference lines. The loss of functionality is much less than might be guessed, as you can still add details to the graphs through its addplot() option.
Confidence interval calculations in stripplot were geared to ci as it existed before Stata 14.1, when the syntax was changed. An updafe of same kind was overdue. It may seem odd that the update consisted of removing the options, but what stripplot can do (and more) is so far as I am concerrned better done by reversing the order of operations.
cisets from SSC (and the Stata Journal from 26(2) -- the next issue, due around June) produces confidence interval sets for various summary measures, after which confidence intervals can be plotted directly. https://www.statalist.org/forums/for...-interval-sets explains and exemplifies in more detail, as does that paper forthcoming in the Stata Journal.
The other options that have been removed were not outdated, but the main reason for removing them was a sense that the syntax had become too complicated. The help file still includes a large number of references in its territory, largely because of a personal habit of using help files as my notes on projects based on Stata commands, some of which get written up in due course as papers in the Stata Journal. If I think up new options or new examples or encounter new references, they tend to get added to the help file.
The help for strip includes the code for 30 graph examples, which can be run directly using the ancillary file strip_examples.do
You can install strip by installing the stripplot package for the first time or updating your installation if you've installed it before.
Code:
ssc install stripplot ssc install stripplot, replace

Comment