-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce91c33
commit 00a8446
Showing
6 changed files
with
59 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
*! bimap v1.8 (26 Jun 2023) | ||
*! bimap v1.81 (22 Aug 2023) | ||
*! Asjad Naqvi ([email protected]) | ||
|
||
* v1.81 (22 Aug 2023): Fixed a bug where missing data was getting dropped. ndsize() passthru fixed. | ||
* v1.8 (26 Jun 2023): custom cuts now take on values given in list, textgap() removed, labxgap(), labygap() added. Legend label positions optimized. | ||
* v1.7 (15 Jun 2023): added support for binary variables: xdiscrete, ydiscrete | ||
* v1.62 (19 May 2023): Fix to legend labels and sizes. Minor improvements. | ||
|
@@ -74,7 +75,7 @@ version 15 | |
exit | ||
} | ||
|
||
marksample touse, strok | ||
marksample touse, strok novarlist | ||
gettoken var2 var1 : varlist // var1 = x, var2 = y | ||
|
||
|
||
|
@@ -109,6 +110,8 @@ qui { | |
|
||
tempvar cat_`var1' cat_`var2' | ||
|
||
|
||
|
||
summ `var1', meanonly | ||
local xmin = r(min) | ||
local xmax = r(max) | ||
|
@@ -478,6 +481,8 @@ qui { | |
local ndo = cond("`ndocolor'" == "", "gs12", "`ndocolor'") | ||
|
||
local ndf = cond("`ndfcolor'" == "", "gs8", "`ndfcolor'") | ||
|
||
local nds = cond("`ndsize'" == "", "`lw'", "`ndsize'") | ||
|
||
local leg = cond("`showlegend'"=="", "legend(off)", "`legend'") | ||
|
||
|
@@ -519,13 +524,14 @@ qui { | |
spmap `grp_cut' using "`using'", /// | ||
id(_ID) clm(custom) clb(0(1)`cutst') fcolor("`colors'") /// | ||
ocolor(`lc' ..) osize(`lw' ..) /// | ||
ndocolor(`ndo' ..) ndsize(`lw' ..) ndfcolor(`ndf' ..) /// | ||
ndocolor(`ndo' ..) ndsize(`nds' ..) ndfcolor(`ndf' ..) /// | ||
`polygon' `line' `point' `label' /// | ||
`leg' `legstyle' `legenda' `legendstyle' `legjunction' `legcount' `legorder' `legtitle' /// // v1.4 legend passthrus | ||
`arrow' `diagram' `scalebar' /// // v1.5 passthrus | ||
name(_map, replace) nodraw | ||
|
||
|
||
*/ | ||
|
||
************************** | ||
**** Legend ***** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
v 1.8 | ||
v 1.81 | ||
d BIMAP: A package for creating bi-variate maps. | ||
d | ||
d Distribution-Date: 20230626 | ||
d Distribution-Date: 20230822 | ||
d | ||
d Asjad Naqvi | ||
d [email protected] | ||
|