五月天婷亚洲天久久综合网,婷婷丁香五月激情亚洲综合,久久男人精品女人,麻豆91在线播放

  • <center id="8gusu"></center><rt id="8gusu"></rt>
    <menu id="8gusu"><small id="8gusu"></small></menu>
  • <dd id="8gusu"><s id="8gusu"></s></dd>
    樓主: niuniuyiwan
    4681 3

    [Stata] Stata基礎(chǔ)操作: 繪圖概述(4) [推廣有獎(jiǎng)]

    • 7關(guān)注
    • 91粉絲

    VIP

    學(xué)科帶頭人

    89%

    還不是VIP/貴賓

    -

    威望
    0 級(jí)
    論壇幣
    14017 個(gè)
    通用積分
    1902.7157
    學(xué)術(shù)水平
    1119 點(diǎn)
    熱心指數(shù)
    1167 點(diǎn)
    信用等級(jí)
    1061 點(diǎn)
    經(jīng)驗(yàn)
    8347 點(diǎn)
    帖子
    1625
    精華
    1
    在線時(shí)間
    2458 小時(shí)
    注冊(cè)時(shí)間
    2010-10-10
    最后登錄
    2024-11-19

    樓主
    niuniuyiwan 在職認(rèn)證  發(fā)表于 2015-7-11 22:57:13 |只看作者 |壇友微信交流群|倒序 |AI寫論文
    相似文件 換一批

    +2 論壇幣
    k人 參與回答

    經(jīng)管之家送您一份

    應(yīng)屆畢業(yè)生專屬福利!

    求職就業(yè)群
    趙安豆老師微信:zhaoandou666

    經(jīng)管之家聯(lián)合CDA

    送您一個(gè)全額獎(jiǎng)學(xué)金名額~ !

    感謝您參與論壇問題回答

    經(jīng)管之家送您兩個(gè)論壇幣!

    +2 論壇幣

    Stata 繪圖概述(4)柱狀圖 條形圖

          在實(shí)際繪圖中,柱狀圖(histogram)和條形圖(bar chart)看起來很像,但兩者其實(shí)不同。柱狀圖通常用來呈現(xiàn)變量的分布及整體趨勢(shì),而條形圖經(jīng)常用來比較變量大小。柱狀圖將數(shù)據(jù)按照一定的區(qū)間分組,而條形圖將數(shù)據(jù)分類。
          

    柱狀圖

    條形圖

    1

    呈現(xiàn)變量分布

    比較變量

    2

    橫軸是量化數(shù)據(jù)

    橫軸是類別

    3

    不同柱一般不能重新排序

    不同條可以任意重新排序

    資料來源:http://blog.sina.com.cn/s/blog_5f234d4701019xvd.html      
    1. sysuse sp500, clear
    2. #delimit ;

    3. histogram volume, freq
    4.   xaxis(1 2)
    5.   ylabel(0(10)60, grid)
    6.   xlabel(12321 "mean"
    7.         9735 "-1 s.d."
    8.        14907 "+1 s.d."
    9.         7149 "-2 s.d."
    10.        17493 "+2 s.d."
    11.        20078 "+3 s.d."
    12.        22664 "+4 s.d.", axis(2) grid gmax)
    13.   xtitle("", axis(2))
    14.   subtitle("S&P 500, January 2001 - December 2001")
    15.   note("Source:  Yahoo!Finance and Commodity Systems, Inc.")
    16.   ;
    17. #delimit cr
    復(fù)制代碼
    1. sysuse sp500, clear
    2. #delimit ;

    3. histogram volume, freq normal
    4. xaxis(1 2)
    5. ylabel(0(10)60, grid)
    6. xlabel(12321 "mean"
    7.       9735 "-1 s.d."
    8.      14907 "+1 s.d."
    9.       7149 "-2 s.d."
    10.      17493 "+2 s.d."
    11.      20078 "+3 s.d."
    12.      22664 "+4 s.d."
    13. , axis(2) grid gmax)
    14. xtitle("", axis(2))
    15. subtitle("S&P 500, January 2001 - December 2001")
    16. note("Source:  Yahoo!Finance and Commodity Systems, Inc.")
    17. ;
    18. #delimit cr
    復(fù)制代碼

    1.png

    <--------grid代表網(wǎng)格









    2.png

    <--------添加normal代表正態(tài)曲線

    自定義直方圖寬度的一種方法:
    1. sysuse auto, clear
    2. su mpg
    3. local width=1
    4. histogram mpg ,width(`width') freq ///
    5. addplot(function y =`width'*`=_N'*normalden(x,`r(mean)',`r(sd)'), ra(10 45))


    6. sysuse auto, clear
    7. su mpg
    8. local width=2   //   <-----------根據(jù)需要改變
    9. histogram mpg ,width(`width') freq ///
    10. addplot(function y =`width'*`=_N'*normalden(x,`r(mean)',`r(sd)'), ra(10 45))


    11. sysuse auto, clear
    12. su mpg
    13. local width=3   //   <-----------根據(jù)需要改變
    14. histogram mpg ,width(`width') freq ///
    15. addplot(function y =`width'*`=_N'*normalden(x,`r(mean)',`r(sd)'), ra(10 45))

    16. sysuse auto, clear
    17. su mpg
    18. local width=4   //   <-----------根據(jù)需要改變
    19. histogram mpg ,width(`width') freq ///
    20. addplot(function y =`width'*`=_N'*normalden(x,`r(mean)',`r(sd)'), ra(10 45))
    復(fù)制代碼
    w1.png
    w2.png
    w3.png
    w4.png
    1. //Combining many graphs on a page
    2. sysuse auto, clear
    3. graph drop _all
    4. drop make
    5. foreach i of varlist _all{
    6.          capture confirm numeric variable `i' if _rc==0
    7.          histogram `i', name(`i')
    8.          local z "`z' `i'"
    9.          graph combine `z'
    10. }
    復(fù)制代碼
    多變量直方圖的繪制,可使用循環(huán)語句,合并到同一幅圖中。
    loop.png

    條形圖

         1. 對(duì)于同一數(shù)據(jù)條形圖的繪制,由于hbar支持的標(biāo)簽長(zhǎng)度更長(zhǎng),因此使用graph hbar要比graph bar 好些。
         2. 使用graph bar|hbar|box|hbox|dot 描述類別變量時(shí),選項(xiàng)為over( ) ,不是by( )     
    1. sysuse citytemp, clear
    2. #delimit ;
    3. graph bar tempjuly tempjan, over(region) bargap(-30)
    4. legend( label(1 "July") label(2 "January") )
    5. ytitle("Degrees Fahrenheit")
    6. title("Average July and January temperatures")
    7. subtitle("by regions of the United States")
    8. note("Source:  U.S. Census Bureau, U.S. Dept. of Commerce") ;
    9. #delimit cr
    復(fù)制代碼
    b1.png
    1. sysuse citytemp, clear
    2. #delimit ;
    3. graph bar tempjuly tempjan, over(region) bargap(-30)
    4.         legend( label(1 "July") label(2 "January") )
    5.         ytitle("Degrees Fahrenheit")
    6.         title("Average July and January temperatures")
    7.         subtitle("by regions of the United States")
    8.         note("Source:  U.S. Census Bureau, U.S. Dept. of Commerce")
    9.         blabel(bar, position(inside) format(%9.1f) color(white)) ;
    10. #delimit cr
    復(fù)制代碼
    b2.png
    1. sysuse citytemp, clear
    2. #delimit ;
    3. graph bar (mean) tempjuly tempjan,
    4.         over(division, label(labsize(*.75)))
    5.         over(region)
    6.         bargap(-30) nofill
    7.         ytitle("Degrees Fahrenheit")
    8.         legend( label(1 "July") label(2 "January") )
    9.         title("Average July and January temperatures")
    10.         subtitle("by region and division of the United States")
    11.         note("Source:  U.S. Census Bureau, U.S. Dept. of Commerce") ;
    12. #delimit cr
    復(fù)制代碼
    b3.png
    1. sysuse citytemp, clear
    2. #delimit ;
    3. graph hbar tempjan, over(division) over(region) nofill
    4.         ytitle("Degrees Fahrenheit")
    5.         title("Average January temperature")
    6.         subtitle("by region and division of the United States")
    7.         note("Source:  U.S. Census Bureau, U.S. Dept. of Commerce") ;
    8. #delimit cr
    復(fù)制代碼
    b4.png
    1. sysuse nlsw88, clear
    2. #delimit ;
    3. graph bar wage, over(smsa, descend gap(-30)) over(married)
    4.         over(collgrad, relabel(1 "Not college graduate" 2 "College graduate"))
    5.         ytitle("")
    6.         title("Average Hourly Wage, 1988, Women Aged 34-46")
    7.         subtitle("by College Graduation, Marital Status, and SMSA residence")
    8.         note("Source: 1988 data from NLS, U.S. Dept. of Labor, Bureau of Labor Statistics") ;
    9. #delimit cr
    復(fù)制代碼
    b5.png
    1. sysuse educ99gdp, clear
    2. generate total = private + public
    3. #delimit ;
    4. graph hbar (asis) public private,
    5.         over(country, sort(total) descending) stack
    6.         title("Spending on tertiary education as % of GDP, 1999",
    7.         span pos(11))
    8.         subtitle(" ")
    9.         note("Source: OECD, Education at a Glance 2002", span) ;
    10. #delimit cr
    復(fù)制代碼

    b6.png


    混搭不同顏色區(qū)別變量

    55.png

    1. clear
    2.                 input ///
    3.                     id w software mark
    4.                         1  1   1  129
    5.                         2  1   2  103
    6.                         3  1   3  171
    7.                         4  1   4  98
    8.                         5  1   5  110
    9.                         6  1   6  13
    10.                         7  1   7  4
    11.                         8  1   8  7
    12.                         9  1   9  49
    13.                         10 1   10 60
    14.                 end

    15.                 label define kk ///
    16.                 1  "Stata "    ///
    17.                 2  "MATLAB®"  ///
    18.                 3  "SPSS"     ///
    19.                 4  "R"       ///
    20.                 5  "EViews"  ///
    21.                 6  "Hadoop"  ///
    22.                 7  "WinBUGs"  ///
    23.                 8  "Gauss "   ///
    24.                 9  "Python"  ///
    25.                 10 "SAS"
    26.                 label value software kk

    27.                 label define w 1 "計(jì)量經(jīng)濟(jì)學(xué)與統(tǒng)計(jì)軟件使用大調(diào)查"
    28.                 label value w w

    29.                 graph bar (asis) mark,  over(id) over(software,label(angle(45))) over(w) ///
    30.                     ylabel( 0(20)190, angle(45))        ///
    31.                     blabel(bar, position(12) format(%9.0f) color(black)) ///
    32.                     scheme(s2color)  legend(off)      ///
    33.                     bargap(5) title({bf:萬萬個(gè)論壇幣大放送之二} ) subtitle("經(jīng)管代碼庫(kù)")    ///
    34.                     nofill ytitle("投票數(shù)") ///
    35.                     bar(1, color(gold))      ///
    36.                     bar(6, color(gold))      ///
    37.                     bar(2, color(gs13))      ///
    38.                     bar(7, color(gs13))      ///
    39.                     bar(3, color(sienna))    ///
    40.                     bar(8, color(sienna))    ///
    41.                     bar(4, color(cyan))      ///
    42.                     bar(9, color(cyan))      ///
    43.                     bar(5, color(pink))      ///
    44.                     bar(10, color(pink))
    復(fù)制代碼
    二維碼

    掃碼加我 拉你入群

    請(qǐng)注明:姓名-公司-職位

    以便審核進(jìn)群資格,未注明則拒絕

    關(guān)鍵詞:Stata基礎(chǔ) Stata 基礎(chǔ)操作 tata histogram volume 柱狀圖 資料

    已有 1 人評(píng)分經(jīng)驗(yàn) 論壇幣 學(xué)術(shù)水平 熱心指數(shù) 信用等級(jí) 收起 理由
    xddlovejiao1314 + 100 + 100 + 5 + 5 + 5 精彩帖子

    總評(píng)分: 經(jīng)驗(yàn) + 100  論壇幣 + 100  學(xué)術(shù)水平 + 5  熱心指數(shù) + 5  信用等級(jí) + 5   查看全部評(píng)分

    本帖被以下文庫(kù)推薦

    沙發(fā)
    xddlovejiao1314 學(xué)生認(rèn)證  發(fā)表于 2015-7-12 10:24:36 |只看作者 |壇友微信交流群
    謝謝分享。好貼~
    已有 1 人評(píng)分論壇幣 收起 理由
    niuniuyiwan + 5 精彩帖子

    總評(píng)分: 論壇幣 + 5   查看全部評(píng)分

    藤椅
    wfh仰望星空 發(fā)表于 2015-7-15 13:09:44 |只看作者 |壇友微信交流群
    我來圍觀!
    已有 1 人評(píng)分論壇幣 收起 理由
    niuniuyiwan + 5 精彩帖子

    總評(píng)分: 論壇幣 + 5   查看全部評(píng)分

    板凳
    Alfred_G 學(xué)生認(rèn)證  發(fā)表于 2015-9-1 19:17:39 |只看作者 |壇友微信交流群
    好貼~之前看到“help graph”中也有介紹,學(xué)習(xí)之
    已有 1 人評(píng)分論壇幣 收起 理由
    niuniuyiwan + 5 精彩帖子

    總評(píng)分: 論壇幣 + 5   查看全部評(píng)分

    本版微信群
    加好友,備注jltj
    拉您入交流群

    京ICP備16021002-2號(hào) 京B2-20170662號(hào) 京公網(wǎng)安備 11010802022788號(hào) 論壇法律顧問:王進(jìn)律師 知識(shí)產(chǎn)權(quán)保護(hù)聲明   免責(zé)及隱私聲明

    GMT+8, 2024-12-23 05:17