home.social

#bimap — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #bimap, aggregated by home.social.

  1. Version 1.7 of #Stata #bimap package is now out which introduced a much requested feature: support for discrete variables.

    More info and examples on #GitHub:
    github.com/asjadnaqvi/stata-bi

  2. I will upload the map next week on #GitHub after fixing some minor geography issues.

    For "getcensus" three useful threads:
    twitter.com/AsjadNaqvi/status/

    twitter.com/toddrjones/status/

    ---
    RT @narixyoo
    Thanks to @asjadnaqvi, we can easily create bivariate maps in @Stata using #bimap package. Here is the step-by-step guide! gahwan.com/stata-how-to-create
    twitter.com/narixyoo/status/16

  3. Adding two more #Stata #cartogram #maps for the #USA. The geography is based on the #NYTimes version.

    Data is extracted from the #ACS 2021 population estimates using the #getcensus package. Right map uses the new version of #bimap.

  4. The #Stata #bimap package is less than a year old but, this is one of the most used ones. Thank you for all the feedback and comments and suggestions for upgrades! Keep sending them.

    ---
    RT @asjadnaqvi
    Dropping a new @Stata package "bimap" for #bivariate #maps:

    ssc install bimap, replace

    and then simply:

    bimap vary varx using shapefile, cut(option) palette(option)

    Check it out!!

    #dataviz #Stataviz
    twitter.com/AsjadNaqvi/status/

  5. The #Stata #bimap package is less than a year old but, this is one of the most used ones. Thank you for all the feedback and comments and suggestions for upgrades! Keep sending them.

    ---
    RT @asjadnaqvi
    Dropping a new @Stata package "bimap" for #bivariate #maps:

    ssc install bimap, replace

    and then simply:

    bimap vary varx using shapefile, cut(option) palette(option)

    Check it out!!

    #dataviz #Stataviz
    twitter.com/AsjadNaqvi/status/

  6. The #Stata #bimap package is less than a year old but, this is one of the most used ones. Thank you for all the feedback and comments and suggestions for upgrades! Keep sending them.

    ---
    RT @asjadnaqvi
    Dropping a new @Stata package "bimap" for #bivariate #maps:

    ssc install bimap, replace

    and then simply:

    bimap vary varx using shapefile, cut(option) palette(option)

    Check it out!!

    #dataviz #Stataviz
    twitter.com/AsjadNaqvi/status/

  7. One also define any custom color (as names or Hex codes) for starting, last x-axis, and last y-axis #bimap categories, and let the program engine do the rest:

    bimap share_afam share_hisp using county_shp2, palette(bluered) clr0(yellow) bins(6) values

  8. One can define any custom set of cut-offs for one or both #bimap axes and show exact scaling of the cutoffs:

    bimap share_afam share_hisp using county_shp2, palette(bluered) ///
    bins(4) values cutx(10 25 45 75) cuty(10 20 40 50)binsproper

  9. New #bimap palettes can generate any number of bins including color swaps:

    bimap share_afam share_hisp using county_shp2, palette(yellowblue) values count bins(6)

    bimap share_afam share_hisp using county_shp2, palette(yellowblue) values count bins(6) reverse

  10. A comparison between old (L) & the new #bimap palettes (R):

    // old. 3x3 pre-defined
    bimap share_afam share_hisp using county_shp2, palette(pinkgreen0) values count

    // new. Auto generated
    bimap share_afam share_hisp using county_shp2, palette(pinkgreen) values count

  11. #bimap v1.6 @Stata package is now out. Major release with the following upgrades:
    - Scalable bins.
    - Customize bins.
    - Customize colors.
    - Dynamic legends.
    - Proper spacing of legend bins.
    - Several quality of life improvements

    Install from GitHub:
    github.com/asjadnaqvi/stata-bi

  12. Oh wow nice! Check @gahwan_yoo's blog posts on how to use and map ACS data in @Stata:

    twitter.com/gahwan_yoo/status/

    I also did a review of the #getcensus command here:

    ---
    RT @gahwan_yoo
    Thanks to @asjadnaqvi, we can easily create bivariate maps in @Stata using #bimap package. Here is the step-by-step guide! gahwan.com/stata-how-to-create The sample bivariate map on …
    twitter.com/gahwan_yoo/status/

  13. Verion 1.5 of :stata: #bimap is now out:

    github.com/asjadnaqvi/stata-bi

    Bug fixes, more colors, one can now fully add customized legends, scale bars, arrows, etc.

    #stata #dataviz