Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to plots similar graphs in STATA?

    Hello, could any one tell me how to plot the similar graph in STATA?
    Attached Files

  • #2
    You could try heatplot (from ssc):


    Code:
    sysuse surface, clear
    
    heatplot temperature longitude latitude, discrete(.5) statistic(asis) ///
    by(date, legend(off)) ylabel(30(1)38) aspectratio(1)
    Click image for larger version

Name:	Screen Shot 2019-12-20 at 7.51.18 PM.png
Views:	1
Size:	218.0 KB
ID:	1529555

    You could also look into contour plots. See:

    https://www.stata.com/features/overview/contour-plots/
    Last edited by Justin Niakamal; 20 Dec 2019, 17:56.

    Comment


    • #3
      Thanks Justin Blasongame

      Comment

      Working...
      X