https://github.com/leeper/ciplotm
Modified Version of Nick Cox's 'ciplot' ado for Stata
https://github.com/leeper/ciplotm
Last synced: 3 months ago
JSON representation
Modified Version of Nick Cox's 'ciplot' ado for Stata
- Host: GitHub
- URL: https://github.com/leeper/ciplotm
- Owner: leeper
- Created: 2015-06-18T07:39:45.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-09-12T14:56:53.000Z (almost 9 years ago)
- Last Synced: 2026-03-28T00:22:59.644Z (3 months ago)
- Language: Stata
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ciplotm
This is a fork of Nick Cox's [`ciplot` ado for Stata](https://ideas.repec.org/c/boc/bocode/s431202.html). It adds an optional `sepby` argument the controls the display behavior when using multiple variables in `varlist` combined with the `by()` option. If `sepby`, then `ciplotm` behaves the same as the original `ciplot`. If not using `sepby` (the new default), then bars for each variable are aligned (vertically or horizontally, depending on the other options).
This is athe default behavior of `ciplot` (or the optional behavior or `ciplotm` with the `, sepby` argument):
```Stata
webuse citytemp, clear
ciplot heatdd cooldd, by(region) horizontal recast(conn)
```

And here's the new default behavior using `ciplotm`:
```Stata
ciplotm heatdd cooldd, by(region) horizontal recast(conn)
webuse citytemp, clear
```

See [this StackOverflow post for background context](http://stackoverflow.com/questions/30890710/align-bars-in-ciplot).