Skip to content
    • info@phantran.net
  • Connecting and sharing with us
  • -
  • About us
    • info@phantran.net
HKT ConsultantHKT Consultant
  • Home
  • Corporate Management
    • Entrepreneurship
      • Startup
      • Entrepreneurship
      • Growth of firm
    • Managing primary activities
      • Marketing
      • Sales Management
      • Retail Management
      • Import – Export
      • International Business
      • E-commerce
      • Project Management
      • Production Management
      • Quality Management
      • Logistics Management
      • Supply Chain Management
    • Managing support activities
      • Strategy
      • Human Resource Management
      • Organizational Culture
      • Information System Management
      • Corporate Finance
      • Stock Market
      • Accounting
      • Office Management
  • Economics of Firm
    • Theory of the Firm
    • Management Science
    • Microeconomics
  • Research Methodology
    • Methodology
      • Research Process
      • Experimental Research
      • Research Philosophy
      • Management Research
      • Writing a thesis
      • Writing a paper
    • Qualitative Research
      • Literature Review
      • Interview
      • Case Study
      • Action Research
      • Qualitative Content Analysis
      • Observation
      • Phenomenology
    • Quantitative Research
      • Statistics and Econometrics
      • Questionnaire Survey
      • Quantitative Content Analysis
      • Meta Analysis
      • Statistical Software
        • STATA
        • SPSS
        • SEM-AMOS
        • SmartPLS
        • Eviews
Deleting variables and observations in Stata

1. Clear, drop, and keep In this chapter, we will present the tools for paring observations and variables from a dataset. We saw how to do this using the Data Editor in [GSW] 6 Using the Data Editor; this chapter presents the methods for doing so from the Command window. There are three main

23
Sep
Using the Do-file Editor—automating Stata

1. The Do-file Editor Stata comes with an integrated text editor called the Do-file Editor, which can be used for many tasks. It gets its name from the term do-file, which is a file containing a list of commands for Stata to run (called a batch file or a script in other settings). See

23
Sep
Graphing data in Stata

1. Working with graphs Stata has a rich system for graphical representation of data. The main command for creating graphs is unsurprisingly named graph. Behind this plain name is a wealth of tools. In this chapter, we will make one simple graph to point out the basics of the Graph window. See the [G]

23
Sep
Editing graphs in Stata

1. The Graph Editor With Stata’s Graph Editor, you can change almost anything on your graph; you can add text, lines, arrows, and markers wherever you like. We will first make a graph to edit and will then point out the tools in the Graph Editor. Start by opening the automobile dataset: sysuse auto.

23
Sep
Saving and printing results by using logs in Stata

1. Using logs in Stata When you work on an analysis, it is worthwhile to behave like a bench scientist and keep a lab notebook of your actions so that your work can be easily replicated. Everyone has a feeling of complete omniscience while working intensely—this feeling is wonderful but fleeting. The next day,

1 Comments

23
Sep
Setting font and window preferences in Stata

1. Changing and saving fonts and sizes and positions of your windows You may find that you would like to change the fonts and display style of Stata’s windows, depending on your monitor resolution and personal preferences. At the same time, there could be requirements for font usage, say, when you submit graphs to

23
Sep
Learning more about Stata

1. Where to go from here You now know plenty enough to use Stata. There is still much, much more to learn because Stata is a rich environment for doing statistical analysis and data management. What should you do to learn more? Get an interesting dataset and play with Stata. Use the menus and

23
Sep
Updating and extending Stata—Internet functionality

1. Internet functionality in Stata Stata works well with the Internet. Stata can use datasets and view remote help files as though they were on your computer. Stata also can keep itself up to date (with your permission, of course). Finally, you can install community-contributed commands, which are commands that extend Stata’s functionality. These

24
Sep
Troubleshooting Stata

1. If Stata does not start You tried to start Stata and it refused; Stata or your operating system presented a message explaining that something is wrong. Here are the possibilities: Cannot find license file This message means just what it says; nothing is too seriously wrong. Stata simply could not find the license

24
Sep
Advanced Stata usage

1. The Windows Properties Sheet When you double-click on a shortcut to start an application in Windows, you are actually executing instructions defined in the shortcut’s Properties Sheet. To open the Properties Sheet for any shortcut, right-click on the shortcut, and select Properties. Open the Properties Sheet for Stata’s shortcut. Click on the Shortcut

24
Sep
More on Stata for Windows

1. Using Stata datasets and graphs created on other platforms Stata will open any Stata .dta dataset or .gph graph file regardless of the platform on which it was created, even if it was a Mac or Unix system. Also Stata for Mac and Stata for Unix users can use any files that you

24
Sep
Typographical Note and Example Stata Session

1. Typographical Note This book employs several typographical conventions as a visual cue to how words are used: ■ Commands typed by the user appear in bold. When the whole command line is given, it starts with a period, as seen in a Stata Results window or log (output) file: . correlate extent area

1 Comments

24
Sep
Stata Documentation and Resources

1. Stata’s Documentation and Help Files The complete Stata 12 Documentation Set includes 19 volumes: a slim Getting Started manual (for example, Getting Started with Stata for Windows), the more extensive User’s Guide, the encyclopedic four-volume Base Reference Manual, and separate reference manuals on data management, graphics, longitudinal and panel data, matrix programming (Mata),

24
Sep
Creating a New Stata Dataset by Typing in Data

Data that were previously saved in Stata format can be retrieved into memory either by typing a command of the form use filename, or by menu selections. This section describes basic tricks for creating Stata-format datasets in the first place. We could start simply by typing data into the Data Editor by hand. A

26
Sep
Creating a New Stata Dataset by Copy and Paste

When the original data source is electronic, such as a web page, text file, spreadsheet or word processor document, we can bring these data into Stata by copy and paste. For example, the National Climate Data Center (NCDC) produces estimates of global temperature anomalies (deviations from the 1901-2000 mean, in degrees Celsius) for every

26
Sep
Specifying Subsets of the Data: in and if Qualifiers

Many Stata commands can be restricted to a subset of the data by adding an in or if qualifier. Qualifiers are also available for many menu selections: look for an if/in or by/if/in tab along the top of the dialog. in specifies the observation numbers to which the command applies. For example, list in

26
Sep
Generating and Replacing Variables in Stata

The generate and replace commands allow us to create new variables or change the values of existing variables. For example, in Canada, as in most industrial societies, women tend to live longer than men. To analyze regional variations in this gender gap, we might retrieve dataset Canadal.dta and generate a new variable equal to

26
Sep
Missing Value Codes in Stata

Examples seen so far involve only a single missing-value code, Stata’s default: a large number which Stata displays as a period. In some datasets, however, values might be missing for several different reasons. We could denote different kinds of missing values by using extended missing- value codes. These are even larger numbers, which Stata

26
Sep
Using Functions in Stata

This section lists many of the functions available for use with generate or replace. For example, we could create a new variable named loginc, equal to the natural logarithm of income, by using the natural log function ln in a generate command: . generate loginc = ln(income) ln is one of Stata’s mathematical functions.

1 Comments

26
Sep
Converting Between Numeric and String Formats in Stata

Dataset Canada2.dta contains one string variable, place. It also has a labeled categorical variable, type. Both seem to have nonnumeric values. Beneath the labels, however, type remains a numeric variable, indicated by a blue font in the Data Editor or Browser. Clicking on that cell will show the underlying numbers, or we can list

26
Sep
  • 1
  • …
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • …
  • 196
Theories of the firm
  • What is a Scientific Theory?What is a Scientific Theory?
  • Social Science: meaning, nature and scopeSocial Science: meaning, nature and scope
  • Great Thinkers and their Big IdeasGreat Thinkers and their Big Ideas
  • Definition of Theory of the FirmDefinition of Theory of the Firm
  • Lời dẫn
  • Behavioral theory of the firmBehavioral theory of the firm
  • Becoming and evolution of a scientific theoryBecoming and evolution of a scientific theory
  • Transaction Cost EconomicsTransaction Cost Economics

Most Read in 30 days

Methodology & Skills
  • Learn Programming Languages (JavaScript, Python, Java, PHP, C, C#, C++, HTML, CSS)Learn Programming Languages (JavaScript, Python, Java, PHP, C, C#, C++, HTML, CSS)
  • Quantitative Research: Definition, Methods, Types and ExamplesQuantitative Research: Definition, Methods, Types and Examples
  • Qualitative methods: what and why use them?Qualitative methods: what and why use them?
  • Create your professional WordPress website without codeCreate your professional WordPress website without code
  • A Comparison of R, Python, SAS, SPSS and STATA for a Best Statistical SoftwareA Comparison of R, Python, SAS, SPSS and STATA for a Best Statistical Software
  • Research methodology: a step-by-step guide for beginnersResearch methodology: a step-by-step guide for beginners
  • Doing Management Research: A Comprehensive GuideDoing Management Research: A Comprehensive Guide

Connecting and sharing with us

... by your free and real actions.

hotlineTComment and discuss your ideas

Enthusiastic to comment and discuss the articles, videos on our website by sharing your knowledge and experiences.

hỗ trợ hkt Respect the copyright

Updating and sharing our articles and videos with sources from our channel.

hỗ trợ hkt Subscribe and like our articles and videos

Supporting us mentally and with your free and real actions on our channel.

HKT Channel - Science Theories

About HKT CHANNEL
About HKT CONSULTANT

Website Structure

Corporate Management
Startup & Entrepreneurship
Management Science
Theories of the firm

HKT Consultant JSC.

      "Knowledge - Experience - Success"
- Email: Info@phantran.net
- Website:
phantran.net

  • Home
  • Corporate Management
    • Entrepreneurship
      • Startup
      • Entrepreneurship
      • Growth of firm
    • Managing primary activities
      • Marketing
      • Sales Management
      • Retail Management
      • Import – Export
      • International Business
      • E-commerce
      • Project Management
      • Production Management
      • Quality Management
      • Logistics Management
      • Supply Chain Management
    • Managing support activities
      • Strategy
      • Human Resource Management
      • Organizational Culture
      • Information System Management
      • Corporate Finance
      • Stock Market
      • Accounting
      • Office Management
  • Economics of Firm
    • Theory of the Firm
    • Management Science
    • Microeconomics
  • Research Methodology
    • Methodology
      • Research Process
      • Experimental Research
      • Research Philosophy
      • Management Research
      • Writing a thesis
      • Writing a paper
    • Qualitative Research
      • Literature Review
      • Interview
      • Case Study
      • Action Research
      • Qualitative Content Analysis
      • Observation
      • Phenomenology
    • Quantitative Research
      • Statistics and Econometrics
      • Questionnaire Survey
      • Quantitative Content Analysis
      • Meta Analysis
      • Statistical Software
        • STATA
        • SPSS
        • SEM-AMOS
        • SmartPLS
        • Eviews
  • About us