Home

Products

  • Overview of Stata
  • Why buy Stata?
  • Stata Journal
  • Stat/Transfer
  • Prices

    Australia

  • New purchases
  • Upgrade
  • Bookshop
  • GradPlan


  • New Zealand

  • NZ - New purchases
  • NZ - Upgrade
  • NZ - Bookshop
  • NZ - GradPlan
  • Support

  • Starting Stata
  • Stata tips - General
  • Stata tips - Graphs
  • Stata tips - Tables
  • Technical
  • Stata Courses & Training


  • Order form

    Quotation request

    Contact us


    Stata is a general-purpose statistical package for researchers of all disciplines.
    Epidemiology
    Longitudinal/Panel Data
    Multivariate Methods
    Survey Data
    Survival Analysis
    Time-Series
    Multiple Imputation
    Structural Equation Modelling





    and
    Statistics useful across other fields

    In addition, Stata produces publication-quality graphics, contains extensive data-management capabilities, and has a powerful matrix-programming language.


    What's New in Stata 12?

    Multiple imputation (MI) New Features Structural equation modeling (SEM) Contrasts and pairwise comparisons

    • Chained equations
    • Imputation of continuous,ordinal, cardinal, and count variables
    • Conditional imputation
    • Support for panel data and multilevel models and much more ..
    See Chained equations and more in multiple imputation in Stata 12: here
    • Path diagrams
    • Standardized and unstandardized estimates
    • Modification indices
    • direct and indirect effects and much more..
    See Blog article on SEM: here
    See Stata News article on SEM: here
    See Estimating and interpreting structural equation models in Stata 12: here
    Stata 12 SEM manual - Tour of models: here
    Capabilities include:
    • Linear and nonlinear models
    • Comparison of means,intercepts or slopes
    • and much more ..
    New time series features Contour plots ROC analysis - expanded capabilities

    • Multivariate GARCH: including constant conditional correlations etc.
    • ARFIMA
    • UCM -- unobserved-components models
    • Time-series filters, including Christiano-Fitzgerald, Baxter-King band-pass filters, etc
    • Business calendars -
    See Stata News article: here
    See Stata presentation: here


      Includes both filled and outlined plots

    • ROC adjusted for covariates and more ..
    New Excel import/export commands PDF Interface enhancements

    • Read and write worksheets from Microsoft Excel files, .xls and .xlsx.
    • New Import Preview tool
    See Stata News article: here


    • PDF export of results and graphs

    • New Properties window which lets you manage your variables, including their names, labels, value labels, notes, formats, and storage types.
    • Data Editor also has a new Properties window; has another tool that lets you Hide, Show, Filter, and Reorder the variables;
    • The Review and Variables windows support filtering

    Go here for a comprehensive overview of what's new in Stata 12.
    Go here for greater details on what's new in Stata 12.
    Go here to find out more about the capabilities of Stata 12.



    Stata/MP 12
    Stata/MP 12 is a version of Stata/SE that runs on multiprocessor computers, thus significantly reducing the time required to run your analysis. Stata/MP provides the most extensive support for multiple-processor computers and dual-core computers of any statistics and data-management package. Stata/MP can run on computers with 2,4,6,8,16,32 & 64 processors; with the appropriate licence.
    Go here for a comprehensive overview of Stata/MP 12.
    Stat/Transfer 11
    Now available
    Stata/Transfer is a program that facilitates the changing of file formats eg. a SPSS data file can be converted to a Stata data file
    Go here for details of Stat/Transfer 11.

    Recent  Releases


    Statistics with Stata: Version 12, Eighth Edition 
    Lawrence C. Hamilton
    Price: $70 + Postage*
    More details Details
    (In stock)










    Stata Journal The Stata Journal publishes articles, columns, and book reviews of interest to Stata users from beginners to Stata experts.
    To see the table of contents for Stata Journal Volume 13 Issue 1 (latest issue) go here
    Stata News
    Stata News Volume 27 No.4 has now been posted. If you would like a copy please contact us. The Stata News consists of important announcements about new products, upcoming releases, course dates, NetCourse information, and more. Go here to see the electronic version of the Stata News.
    Bookshop
    For books on Statistics and to help you learn Stata go here.




    Stata Tip

    Getting Stata to automatically open a web page


    Sometimes there are Web pages that you would like to access every now and then. For example Stata's forthcoming web page (you can sign up for email updates but writing a program is more fun) or Stata blogs etc.

    Below is a way that this might be done. You could turn this into a ado file or just put it into your profile.do

    The time interva1 (macro t), in days, is specified at comment 8 below.

    
    clear mata
    
    local a : sysdir PERSONAL                                   //1
    cd `a'
    
    mata:                                                       //2
    if(!fileexists("mymatrix")){                                //3
      v=st_global("c(current_date)")                            //4
      X=date(v,"DMY")                                           //5
    
      fh = fopen("mymatrix.myfile", "rw")                       //6
      fputmatrix(fh, X)
      fclose(fh)
    }
    
    fh = fopen("mymatrix.myfile", "rw")                         //7
    X = fgetmatrix(fh)
    fclose(fh)
    
    st_local("date",strofreal(X))
    
    end  //end mata
    
    local t=1  //interval                                       //8
    
    if `date'+`t'< date(c(current_date),"DMY") {                //9 
      shell "C:\Program Files\Mozilla Firefox\firefox.exe" ///
    		"http://www.stata-press.com/forthcoming/"           //10
    }
    else {
     display "No required to check web page"                    //11   
    }
    
    exit
    


    Note on the above:
    (1) Extended macro saving the path of Stata's PERSONAL location in the local macro a. PERSONAL is on Stata's adopath
    (2) Using a Stata Mata matrix to store the date that a Web page was last accessed. You could store the information in other forms but a Mata matrix seemed a handy way of doing this
    (3) The first time that this is run there is no Mata file; so just checking if one needs to be created. If not, jump into the loop
    (4) Save the current date in a scalar matrix called v
    (5) Convert current date to Stata elapsed time using the date() function
    (6) Saving the Mata matrix to a file
    (7) Reading the saved Mata file
    (8) Save the interval (days) that you wish to display the web page. In this case every day
    (9) If the duration that the web page was last accessed is greater then the specified interval and it has not been accessed today then jump into loop
    (10) The web page that you wish to see
    (11) Comment indicating that program is working but is not required to access Web page

    For further help:
    help clear
    help adopath
    help extended_fcn
    help mata
    help comments
    help macro
    help date functions


    Contact details
    Karl and Helen Keesman,
    Survey Design and Analysis Services Pty Ltd,
    PO Box 1206,
    Blackburn North, Victoria 3130
    Phone: 03 9878 7373
    Fax: 03 9878 2345
    Mob. 0431 839 546

    International:
    Phone: +61 3 9878 7373
    Fax: +61 3 9878 2345

    Email: sales@survey-design.com.au
    ABN 37 051 831 826

    If our office is not attended, please leave your message as well as your phone number or Email address on our answering machine. You can send an Email or fax at any time and we will attend to it as soon as we can.

    *********************************************************************************************
    Survey Design and Analysis Services Pty/Ltd

    Our company is:

    • The Australian & New Zealand distributors for StataCorp. Stata is an integrated suite of software for data management, statistical analysis and graphics, and is available for Windows, Macintosh, and UNIX computers. Stata is used by medical researchers, biostatisticians, epidemiologists, economists, sociologists, political scientists, geographers, psychologists, social scientists, and other research professionals needing to handle and analyse data.
    • The Australian & New Zealand distributors for Stat/Transfer (Circle Systems). Stat/Transfer handles the transfer of data between a wide range of data formats.

    ********************************************************************************************



    'Stata is a registered trademark of StataCorp LP, College Station, TX, USA, and the Stata logo is used with the permission of StataCorp.'