楼主: harleych
3340 2

[学习心得] 收到stata News, stata 13新增putexcel命令 [推广有奖]

  • 1关注
  • 3粉丝

博士生

93%

还不是VIP/贵宾

-

威望
0
论坛币
130 个
通用积分
14.2464
学术水平
26 点
热心指数
30 点
信用等级
17 点
经验
5734 点
帖子
196
精华
0
在线时间
532 小时
注册时间
2006-12-26
最后登录
2024-4-9

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
前两天收到stata News一直没看,今天大概浏览了一下,第一条就是新增putexcel命令,大概操作是这样的
1. correlate foreign mpg
2. return list
3. matrix list r(c)
4. putexcel A1= matrix(r(c),names) using corr
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Stata EXCEL tata exce xcel foreign return matrix names

沙发
yuedragon 在职认证  发表于 2014-4-2 13:41:26 |只看作者 |坛友微信交流群
Title

    [P] putexcel -- Export results to an Excel file


Syntax

    Basic syntax

        putexcel cellexplist using filename [, options]


    Advanced syntax

        putexcel set filename [, putexcel_set_options]

        putexcel describe

        putexcel clear

        putexcel cellexplist [, sheet("sheetname", ...) colwise]


    options                         Description
    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    modify                          modify Excel file
    replace                         overwrite Excel file
    sheet("sheetname" [, replace])  write to Excel worksheet sheetname
    colwise                         write resultset values in consecutive columns instead of consecutive rows
    keepcellformat                  when writing resultset, preserve the cell style and format of an existing worksheet
    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


    putexcel_set_options            Description
    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    modify                          modify Excel file
    replace                         overwrite Excel file
    sheet("sheetname" [, replace])  write to Excel worksheet sheetname
    keepcellformat                  when writing resultset, preserve the cell style and format of an existing worksheet
    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


    cellexplist is one or more of any of the following:

                cell=(exp[, asdate|asdatetime])
                cell=matrix(name[, names|rownames|colnames])
                cell=resultset
            
    cell is a valid Excel cell specified using standard Excel notation.  For matrix(name), cell is where the first value of the matrix will be written.  If you specify a cell multiple
    times in a putexcel command, the rightmost cell=value is the one that is written to the Excel file.

    If your expression evaluates to a Stata date and you want that date to be written as an Excel date, use (exp, asdate).  If your expression evaluates to a Stata datetime and you want
    that datetime to be written as an Excel datetime, use (exp, asdatetime).

    Use matrix(name) when working with any Stata matrix.  matrix(name, names) specifies that matrix row and column names, row and column equation names, and the matrix values be written
    to the Excel worksheet.  By default, matrix row and column names are not written.  matrix(name, rownames) writes the matrix row names and values to the Excel worksheet, and
    matrix(name, colnames) writes the column names and values to the Excel worksheet.

    resultset is a shortcut name used to identify a group of return values that are stored by a Stata command.  resultset can be

         rscalars            rscalarnames
         escalars            escalarnames
         emacros             emacronames
         rmacros             rmacronames
         ematrices           ematrixnames
         rmatrices           rmatrixnames
         e*                  enames
         r*                  rnames

    Example:  putexcel A1=(2+2) using file
        Write the result of the expression 2+2 into Excel column A row 1 in the file file.xlsx.

    Example:  putexcel A1=("Mean of mpg") A2=(r(mean)) using file
        Write "Mean of mpg" in Excel column A row 1, and write the r-class result r(mean) in Excel column A row 2.

    Example:  putexcel D14=matrix(A) using file
        Take the Stata matrix A, and write it into Excel using column D row 14 as the upper-left cell for matrix A.

    Example:  putexcel D4=("Coefficients") B5=matrix(e(b)) using file
        Write "Coefficients" in Excel column D row 4, and write the values of e-class matrix e(b) into Excel using column B row 5 as the upper-left cell.

    Example:  putexcel A1=rscalars using file, sheet("Results")
        Write all r-class scalars in memory to sheet Results in file.xlsx.  The first scalar value in memory will be written in Excel column A row 1, the next value in column A row 2,
        etc.

    Example:  putexcel A1=rscalarnames B1=rscalars using file, sheet("Results")
        Write all r-class scalar names and values in memory to sheet Results in file.xlsx.  The first scalar name will be written in Excel column A row 1, the next in column A row 2, and
        so on, and the first scalar value will be written in column B row 1, the next in column B row 2, and so on.

    Example:  putexcel A1=r* B1=e* using file
        Write all r-class scalars, macros, and matrices and all e-class scalars, macros, and matrices in memory to file file.xlsx.  The first r-class value in memory will be written in
        Excel column A row 1, the next value in column A row 2, and so on.  The first e-class value in memory will be written in Excel column B row 1, the next value in column B row 2,
        and so on.


Menu

    File > Export > Results to Excel spreadsheet (*.xls;*.xlsx)


Description

    putexcel writes Stata expressions, matrices, and stored results to an Excel file.  putexcel is supported on Windows, Mac, and Linux. Excel 1997/2003 (.xls) files and Excel 2007/2010
    (.xlsx) files are supported.  putexcel looks at the file extension .xls or .xlsx to determine which Excel format to write.

    putexcel set filename sets the Excel file to create, modify, or replace subsequent putexcel cellexplist commands.  If filename does not exist, putexcel set will create the file.  If
    filename exists, it will not be modified unless you specify the modify or replace options.

    putexcel describe displays the file information set by putexcel set.

    putexcel clear clears the file information set by putexcel set.

    putexcel cellexplist writes Stata expressions, matrices, and stored results to an Excel file.

    The default file extension for putexcel is .xlsx.


Options

    modify in the basic syntax modifies an existing Excel file.

        In the advanced syntax, modify allows you to modify the file specified with putexcel set using subsequent putexcel cellexplist commands.

    replace in the basic syntax overwrites an existing Excel file.

        In the advanced syntax, replace replaces the file specified with putexcel set and then allows you to modify the file using subsequent putexcel cellexplist commands.

    sheet("sheetname") writes to the worksheet named sheetname.  If there is no worksheet named sheetname in the workbook, a new sheet named sheetname is created.  If this option is not
        specified, the first worksheet of the workbook is used.

        sheet("sheetname", replace) clears the worksheet before values are written to it.

    colwise specifies that if a resultset is used, the values written to the Excel worksheet are written in consecutive columns.  By default, the values are written in consecutive rows.

    keepcellformat specifies that when writing the resultset, putexcel should preserve the existing worksheet's cell style and format.  By default, putexcel does not preserve a cell's
        style or format.


Remarks and examples

    To demonstrate the use of putexcel, we will first load auto.dta and export the results of the summarize command to an Excel file named results.xlsx:

        . sysuse auto
        (1978 Automobile Data)
        
        . summarize mpg

        . return list

         scalars:
                           r(N) =  74
                       r(sum_w) =  74
                        r(mean) =  21.2972972972973
                         r(Var) =  33.47204738985561
                          r(sd) =  5.785503209735141
                         r(min) =  12
                         r(max) =  41
                         r(sum) =  1576

        . putexcel A30=rscalars using results, sheet("June 3") modify

    The above command modifies Excel workbook results.xlsx sheet June 3 with the following cell values:

        A30 =  74
        A31 =  74
        A32 =  21.2972972972973
        A33 =  33.47204738985561
        A34 =  5.785503209735141
        A35 =  12
        A36 =  41
        A37 =  1576

    You can write out specific results by using the following command:

        . putexcel A30=(r(min)) A31=(r(N)) using results,          ///
                sheet("June 3", replace) modify

    The above command would write over sheet June 3 in results.xls so that just cell A30 and A31 contained values 12 and 74.

    You can use putexcel to create tables in Excel using Stata return results.  To create a tabulate oneway table of the variable foreign in Excel format, type

        . tabulate foreign, matcell(cell) matrow(rows)

           Car type |      Freq.     Percent        Cum.
        ------------+-----------------------------------
           Domestic |         52       70.27       70.27
            Foreign |         22       29.73      100.00
        ------------+-----------------------------------
              Total |         74      100.00

        . putexcel A1=("Car type") B1=("Freq.") using results,     ///
                sheet("tabulate oneway") replace

        . putexcel A2=matrix(rows) B2=matrix(cell) using results, ///
                sheet("tabulate oneway") modify
        
        . putexcel A4=("Total") B4=(r(N)) using results,           ///
                sheet("tabulate oneway") modify

    If you are going to export complex tables or export numerous objects, you should use the advanced syntax of putexcel.  For example, to create a regression table in Excel format using
    returned results from regress, type

        . sysuse auto, clear
        . regress price turn gear

        . putexcel set "results.xls", sheet("regress results")

        . putexcel F1=("Number of obs") G1=(e(N))
        . putexcel F2=("F")             G2=(e(F))
        . putexcel F3=("Prob > F")      G3=(Ftail(e(df_m), e(df_r), e(F)))
        . putexcel F4=("R-squared")     G4=(e(r2))
        . putexcel F5=("Adj R-squared") G5=(e(r2_a))
        . putexcel F6=("Root MSE")      G6=(e(rmse))
        . matrix a = r(table)'
        . matrix a = a[.,1..6]
        . putexcel A8=matrix(a, names)

使用道具

藤椅
dream521 发表于 2014-8-9 22:05:33 |只看作者 |坛友微信交流群
感谢分享啊,感觉还是outreg2好用一些

使用道具

您需要登录后才可以回帖 登录 | 我要注册

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

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-5-3 19:47