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
  • Technical
  • Stata Courses & Training


  • Order form

    Contact us
    STATA 11


    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 Inputation
    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 11?
      Multiple imputation (MI)
    • Univariate imputation
    • Multivariate imputation
    • MI Control Panel
    • Manage MI datasets
      GMM
    • Linear and nonlinear models
    • One-step, two-step, and iterative estimators
    • Cross-sectional, time-series, and panel data
    • Panel-style instruments
      Competing-risks regression
    • Time-varying covariates
    • Cumulative incidence graphs
    • Subhazard ratios
      Multivariate time series
    • State-space models
    • Dynamic-factor models
    • Multivariate GARCH
      PDF documentation
    • Comes with every copy of Stata
    • Includes all manuals (over 8000 pages)
    • Accessed via pull down menu and integrated with help files
      Factor variables
    • Interactions
    • Polynomial terms
    • Create indicators automatically
      Panel data and mixed models
    • Error covariance structures
    • Unit-root tests
    • Standard errors for BLUPs
      Fonts in graphics
    • Italics and bold
    • Greek letters
    • Mathematical symbols
    • Superscripts and subscripts
    • Multiple fonts
      New interface
    • Variables Manager
    • Live view on data
    • Data and variable filters
    • Syntax highlighting
    • Code folding
    • Bookmarks

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

    Stata/MP 11
    Stata/MP 11 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. StataMP 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 11.

    Stat/Transfer 10 - 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 10.


    Have you updated Stata 11 yet?
    The latest Stata 11 executable was updated on 16 Jun 2010 .
    The latest updates to ADO files was on 1 Jul 2010

    Please note that this update takes Stata to Stata 11.1
    .

    Stata is a living program, and updates are released from time to time to enhance it. You can check your current Stata 11 status with the pull down menu Help>Official Updates and then click on www.stata.com. Then follow instructions. You check what has changed using the pull down menu -Help>Whatsnew-. Alternatively let Stata do the checking for you. Using the pull down menu goto Prefs/General Preferences/Internet and then check the enable automatic update checking square.
    For more information on updating Stata type help update on the Stata command line.

    Recent  Releases




    An Introduction to Survival Analysis Using Stata 3nd Edition
    Mario Cleves, William W. Gould, Roberto G. Gutierrez, and Yulia Marchenko
    Price: $85 + Postage*
    More Details
    (Now in stock)



    An Introduction to Stata for Health Researchers - 3nd Edition
    Svend Juul
    Price: $79 + Postage*
    More Details
    (Now in stock)





    Data Management Using Stata: A Practical Handbook

    Michael N. Mitchell

    (Now Available )
    The cost $A74 + postage
    To find out more go here .

      The chapters in this book are:
    • Introduction
    • Reading and writing datasets
    • Data cleaning
    • Labeling datasets
    • Creating variables
    • Combining datasets
    • Processing observations across subgroups
    • Changing the shape of your data
    • Programming for data management
    • Additional resources
    • Common elements





    A Gentle Introduction to Stata - 3nd Edition
    Alan C. Acock

    (Now in stock)
    This book has been revised to include the commands and features that were added in Stata 11
      The chapters in this book are:
    • Getting started
    • Entering data
    • Preparing data for analysis
    • Working with commands, do-files, and results
    • Descriptive statistics and graphs for one variable
    • Statistics and graphs for two categorical variables
    • Tests for one or two means
    • Bivariate correlation and regression
    • Analysis of variance
    • Multiple regression
    • Logistic regression
    • Measurement, reliability, and validity
    • Working with missing values-multiple imputation
    The cost $A81 + postage
    To find out more go here .




    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 10 Issue 2 (latest issue) go here

    Stata News
    Stata News Volume 25 No.2 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

    Producing an edited log file

    Stata's log file reproduces what you see in the Results windows. Often there is a lot of material that is not needed for a final report and this material needs to be edited before presenting a report to others. Stata's log file can be edited from the do file as it is written. Just write a do file as is normally done and then decide what is required to be included.

    The example below has 2 ways of contolling the final log file output:
    1. Turning the log on and off so only the material that you wish to see is added
    To do this write a few local macros at the start of the log file and include these where required between Stata commands.

    2. Removing any text as required
    Using filefilter to remove the unnessary text.

     
    
    //set macros
    local new "capture log using out1, text replace"
    local on "capture log using out1,text  append"
    local off "capture log close"
    
    
    sysuse auto, clear    
    `new'      
    
    *this is a comment
    
    `off'                                                //off
    regress mpg weight
    
    `on'                                                 //on
    display "`e(rss)'"
    
    `off'                                                //off
    generate gpm=1/mpg
    
    `on'                                                 //on
    
    *this is GPM
    
    summarize gpm
    `off'                                                //off
    
    type out1.log  //displays log file before filefilter
    
    filefilter out1.log out2.log, from("off'") to(" ") replace
    filefilter out2.log out3.log, from("`") to(" ") replace 
    filefilter out3.log out4.log, from("  //off") to("") replace 
    filefilter out4.log out5.log, from(".") to("") replace 
    
    type out5.log  //displays log file
    
    
    For further help on the above code see:
    help macro
    help filefilter
    help type




    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.'