Stata最有用的points都在這裡,無可替代的材料

2021-03-02 計量經濟圈

歡迎投稿(薦稿)計量經濟圈,計量相關都行

箱:econometrics666@sina.cn

計量經濟圈(ID: econometrics666);需要打開裡面藍顏色連結獲得資料的請直接進入咱們社群,我們會統一發放這個資料

FILE MANAGEMENT//文檔管理

Gentzkowand Shapiro (2014) 「Code and Data for the Social Sciences: A Practitioner’sGuide.」 - I strongly recommend reading this before embarking on yourvery first empirical research project. The guide introduces you to a lot ofuseful concepts of data management developed in computer science, which willsave tons of time during an increasingly long journey of conducting a piece ofempirical research in economics. The most important are Chapters 2, 4 and 5,which help you organize your data files and millions of your Stata dofiles (no joking, by the time you publish your empirical paper, you willhave tons of Stata codes).

TUTORIALS//教學

Essamand Hughes (2016) Stata Cheetsheets --- All the importantStata commands at one glance. (HT: MarcBellemare)

Lembcke(2009) 「Introduction to Stata」 and 「Advanced Stata Topics」--- These are the Statacourse lecture notes for PhD students at the Department of Economics, LSE.Since 2004, each year’s course instructor has updated and expanded them. I tookthe course in 2004, but the current version of the lecture note is much morethan what I learned at the course. You will learn a lot from this. Inparticular, 「Advanced Stata Topics」 touches on how to writeand publish your own Stata programme, maximum likelihood estimation in Stata,and how to use Mata (Stata’s matrix programming language), the topics that areusually not covered in a Stata course for economists.

Using Stata to Analyze Survey Data by Nicholas Minot (IFPRI):This is an excellent introduction to Stata specifically tailored for would-bedevelopment economists.

Maybeuseful:

A. Colin Cameron and P. K. Trivedi Microeconometrics: Methods and Applications 

GermánRodriguez 「Stata Tutorial」 Princeton University

Phil Bardsley, Kim Chantala, and Dan Blanchette "Stata Tutorial" University of NorthCarolina at Chapel Hill 

StataStarter Kit by UCLA Academic Technology Service

INTRODUCTION//引言

What Stata can/can't do by A. Colin Cameron(Dept. of Economics, University of California, Davis)

ADO FILES//自動程序

Toinstall an ado file, type "ssc install xxx" (where xxx should bereplaced with the name of the ado file) in your Stata interactive session.

DO FILES//do文檔

Makingdo-files is essential because it allows other researchers to replicate yourempirical analysis. It's increasingly become the norm among empiricalresearchers to make public on the website Stata do-files used to produceresults in published papers. Here are some websites on how to make do-files.

MichaelS. Hill (2015) "In Stata coding, Style is the Essential: A brief commentaryon do-file style" 

Stata Tutorial by Carolina Population Center, University ofSouth Carolina 

AnIntroduction to Stata by Aimee Chin at MIT

Stata section of Guide to Genetic Analysis by Centre forIntegrated Genomic Medical Research (Links to example do-filesare dead, but it contains some information on editor software.)

Using external text editors to write do files byFriedrich Huebler

RA Manual Notes on Writing Code, by MatthewGentzkow and Jesse M. Shapiro (2012), offer the best practices in computerprogramming that are useful for writing Stata do files (and scripts for othersoftware).

Stata helpfor timer: A useful command if you run a do file that contains acommand to take very long to be executed (e.g. regression with a lot of fixedeffects).

Ifyou use Stata/MP on cluster computing facilities, see Stata Help:statampif you use Stata/MP on cluster computing facilities.

READING FILES//閱讀文件

Everydata analysis begins with opening a data file. First, look at this website for jargons for data formats.(The description on rectangular files is wrong, though.)

StataHelp infiling: Official guide on which command to use for readingdifferent types of data.

Excel

Excelfiles can finally be imported by a Stata command: importexcel.

Forearlier versions of Stata to read an Excel file, follow this blog entry. Make sure to use the forwardslash (/) rather than the backslash (\) for the path name. It should thenwork. 

Stata

Thereis a useful ado program named USE10 whichallows you to read the Stata version 10 data with Stata version 9. Type 「sscinstall use10」 to install it. 

SPSS

Toread SPSS data files, use the usespss ado. (HT: David McKenzie.)

CSV

Ifeach data entry is separated by a comma (called the CSV format), use INSHEET.

Ifyour data includes an identification number with more than 7 digits, make sureyou include the double option to the insheet command.Read Stata Help for data_type for details.  

Tab-delimited

Ifthe separater is a tab or a space, use INFILE.

Fixed format

Ifthe data file is in the fixed format (no separater between data entries;entries are identified by column numbers), it's more tricky. There are threecases:

(1)If it's a flat file (each single line represents one observation), see Stata: How to Write a Dictionary Program to Read Raw Data bythe Electronic Data Service (EDS) at Columbia University;

(2)If it's a rectangular file (the fixed number of lines represent oneobservation), see "Example of a Program to Read Data with MultipleRecords/Case" at the bottom of Stata: How to Write a Dictionary Program to Read Raw Data bythe Electronic Data Service (EDS) at Columbia University;

(3)If it's a hierarchical file (a flexible number of lines represent oneobservation such as World Fertility Surveys), see Stata: How to Read Hierarchical Files in Stata bythe Electronic Data Service (EDS) at Columbia University.

From scratch

Tocreate a dataset from scratch, first type 「drop _all」 and then type 「set obs #」where # is the number of observations in this new dataset. Then createvariables by the generate command etc. For a small dataset, you can use the INPUTcommand to directly enter the data.

Multiple files in the same directory

To read many files in the same directory and append them all,see Append Many Files by UCLA.

EDITING DATA STRUCTURE//編輯數據結構

Beforestarting to edit data itself, you need to edit the structure of data files:reshape, append, and merge.

RESHAPE:Whenever you use the datasets downloaded from World DevelopmentIndicators, you need to do this.

Using Stata's RESHAPE command, by Amy Yuen atElectronic Data Center of Emory University General Libraries

APPEND/MERGE:Good empirical research often relies on the use of two or more completelydifferent datasets. So you need to append or merge different datasets beforestarting analysis. 

ISID:When you want to merge two datasets which do not share the common uniqueidentifier but do share the same variables (e.g. birth date, birth region), theISID command lets you check if a certain set of variables uniquely identifyobservations. See Stata Help on ISID.

Stata Tutorial Part 4: Manipulating Files, bySyracuse University Library

DATA PROCESSING//數據處理

How to create dummy variables byStata FAQs

Create a new dataset by hand by CarolinaPopulation Centre, University of North Carolina

Listof math functions by Stata Help - can be usedin combination of generatecommand to edit variables.

List ofoperators by Stata Help

Date variables by Data and StatisticalServices, Princeton University --- This webpage tells you how to convert datevariables into different formats (e.g. convert the variables of year, month,and day into one date variable etc.). 

Tocategorize observations by percentile bins, use the command xtile.See this Statalist message. 

UNIQUE: Stata module to report number of unique values in variable(s) ---Sometimes this ado command is useful. For example, you may want to know whethera particular variable takes more than one value for each group of observations.To see the detail, type 「ssc install unique」 to install the ado file and thentype 「help unique」 for its help.

REGEXM:useful if you want to identify observations whose string variable contains aparticular set of letters. 

Loop over all values of a particular variable:there is a lesser-known command LEVELSOF, creating a local macro r(levels)which contains the list of all values of the specified variable.

SUMMARY STATISTICS//描述統計

ESTPOST -This is part of the ESTOUT ado file package, automatizing the process ofcreating a table of summary statistics. Highly recommended.

Section6 (pages 33-43) of Using Stata for Survey Data Analysis by NickMinot at IFPRI --- Very useful, especially if you are analyzing householdsurvey data.

How to conduct a t-test for survey data, by UCLAAcademic Technology Service --- Useful if each observation in your data needsto be weighted according to the sampling method. See also how to use the SVY command.

Generating Regression and Summary Statistics Tables inStata: A Checklist and Code, by Matthew Groh (May, 2014) ---Provides an example do file that uses the MAT2TXT Stata module.

ESTIMATIONS//估計

Overview of Stata estimation commands

Stata Textbook Examples: Econometric Analysis of CrossSection and Panel Data by Jeffrey M. Wooldridge, by UCLA AcademicTechnology Service --- First, find an example of the estimation method you wantto conduct in Wooldridge's graduate econometrics textbook. Then log on to thiswebpage to see what Stata command does the estimation you want.

Beyond simple OLS estimation by UCLAAcademic Technology Service - robustestimation, clusteringquantileregressionlinear hypothesis testingerrors-in-variables regression(eivreg), censored/truncated data, SURmultivariateregression, etc.

Fixed effects estimation

TheXTREG command with the FE option (ie. fixed effects estimation) has recentlybeen modified. See what’s new inStata 10 (items 4, 5, and 7 in particular) and inStata 11 (the fourth bullet point in particular).

Fixed Effects Estimation (xtreg commandwith fe option) by Stata FAQ - explains whythere is a constant term in the estimation result table.

Differences among within, between, and overall R-squaredobtained by the xtreg, fe command by JustinSmith (15 August 2006) 

R squared in Fixed Effects Estimation by Stata FAQ -explains why reported R squared is different between xtreg, fe and areg.See also this note by Indiana University Information TechnologyServices. Theoretical background can be found in Hayashi's Econometricstextbook (page 333-4), for example. (This issue seems to be outdated with thextreg command improved by Stata version 10 or higher.)

Ifyou notice the areg command the xtreg command with the fe option producedifferent clustered standard errors from each other, read this. 

Prais-Winstenpanel regression: use the XTPCSE command. Examples include Rohlfset al (2010).

Weighted least squares estimation

WeightedLeast Squares when the variance of the error term is known byStata Help

Choosing the Correct Weight Syntax by UNCCarolina Population Center - if you wonder what pweight,fweight, aweight, and iweight really mean.

Weighted Least Squares Regression byUCLA Academic Technology Service (See Deaton (1997) The Analysis ofHousehold Surveys, pp.67-73, for the use of weighted least squares in thecontext of survey design.)

probit, logit, and other nonlinear regressions

MARGINS:a new command introduced since version 12, to report the average value of thepredicted dependent variable by each specified value of regressors (if Iunderstand corectly). Useful for interpreting estimated coefficients fromnonlinear regressions, as explained by SSCC at University of Wisconsin-Madison.

INTEFF: this is an ado package to correctlyestimate the magnitude and standard errors of the effect of an interaction termin nonlinear models such as probit and logit. See Ai and Norton (2003) for detail. Thiscommand, however, does not work if there are quite a few dummy variables asregressors. It seems the MARGINS and MARGINSPLOT commands supercede the INTEFF.

Event study

How to conduct an event study estimationwith Stata by Data and Statistical Services, PrincetonUniversity

Attrition bias

Lee(2009)’s treatment effects bounds. In the case of attrition bias, this methodis now the industry standard. Now you can easily do it in Stata with the leebounds command. New

Standard errors

Bootstrapping:See Lecture 4 (pages 6-8) in Programming inStata, RLAB Data Service, London School of Economics. 

X_OLS: Timothy Conley's standard error correctionfor spatial correlation. This is the standard way of calculating standarderrors in the literature when you use the data where outcomes and regressorsare spatially correlated. 

Douglas Miller’s Stata code page contains aStata do file to execute Cameron, Gelbach, and Miller (2008)’s Wild Bootstrapstandard error clustering method, which is increasingly popular among appliedmicroeconometric researchers when the number of clusters is small. 

Matching estimation//匹配估計

CEM: CoarsenedExact Matching, by Iacus, King, and Porro (2008), for creating acontrol group whose observables are balanced against the treated group ex ante.Used by Azoulay, Zivin, and Wang (2010). 

Matching Estimators ado file by Abadie,Drukker, Herr, and Imbens

Synth by Abadie, Diamond, and Hainmueller--- A method to estimate the treatment effect from observational data when onlyone unit is treated. 

Pair-wiseMahalanobis matching with an optimal greedy algorithm: See page 209 of Bruhn andMcKenzie (2009). This article’s replication data file (click「Download Data Set」 on this webpage), contains a Stata code for thismatching method.

AFTER EACH REGRESSION IS RUN...//回歸之後

Howto interpret output tables that appear after executing estimation commmandssuch as summarize, regress, logistic, etc. by UCLA AcademicTechnology Service

reformat ado-file, by Sealed Envelop Ltd. - Thisado-file is useful when you have tons of fixed-effects (e.g. country dummies)and are interested in coefficients on these dummies.

StataClass 3, by Stas Kolenikov, Duke University - introduces commandsafter estimation for plotting residuals etc.

Fromversion 10, you can save estimation results in the disk by thecommand estimates save. As a result, the ESTSAVE ado is no longer necessary to install.

parmest ado-file allows you to create aStata data file of coefficient estimates along with t-values and p-values. Bydefault, Stata does not store t-values and p-values after regressions. Thisado-file is useful if you need to use t-values and/or p-values after eachregression is run. 

REPORT ESTIMATION RESULTS//匯報估計結果

ESTOUT -A great ado-file package to create a table of regression results either in thetext file format, in the HTML format, or in the TeX format! It's more versatilethan OUTREG2 (see below). It is slightly complicated but it's worth paying thefixed cost of learning how to use. To minimize the fixed cost, follow thefollowing steps:

Toinstall the package, see here.

First,learn how to use ESTSTO by readingthis.

Then,learn how to use ESTTAB by readingthis.

Onlyfor fancier things to do, you need to learn ESTOUT (themore flexible version of ESTTAB) and ESTADD (themore flexible version of ESTSTO's ADDSCALARS option).

Withthe ESTOUT package, you can easily create a summary statistics table!

TheESTOUT package also allows you to include "YES" or "NO" toindicate whether a certain set of fixed effects are controlled for (a standardpractice in labor economics type research). See this document.

Generating Regression and Summary Statistics Tables inStata: A Checklist and Code, by Matthew Groh (May, 2014) --- If youprefer creating regression tables in the Excel format.

TABOUT - Seems to be a very useful ado forautomating the process of creating any kinds of tables formatted to appear onan academic paper. Example Stata do files mentioned in this tutorial can be downloadedat the author’s website.

OUTREG2.ado - An improved version of OUTREG.ado (seebelow). It's less versatile than ESTOUT, but it's more flexible in producing aTeX file. One problem is that, after fixed effects estimation (areg or xtreg,fe), the nocons option does not work. 

How to use outreg.ado, by KelloggResearch Computing, Northwestern University - probably the most usefulexplanation of outreg ado file, including the PDF file of outreg help file. When you wantto use addstat option for reporting more than 10 statistics,outreg does not work properly. A solution can be found here (Statalist archives). (If you want tofurther convert the resulting EXCEL file into a LaTeX format, download EXCEL2LATEX here and extract the downloadedzip file into "C:\Documents and Settings\username\ApplicationData\Microsoft\AddIns" (where "username" is your own username).Then open the Excel and click "Tools - Add-Ins..." and check the boxfor Excel2Latex. You'll see a new small icon in tool bars. Select the table youwant to convert and then click the icon. Now you can create a TeX file of yourtable.)  

How to report multinominal logit regression results withOUTREG, by Statalist

GRAPHICS//繪圖

Online Tutorial for Making Graphs by StataCorp. - An excellent website in the sense that you can choose the visual image(rather than picking the words like 「bar graphs」, 「scatter plots」, etc.) tolearn how to make various types of graph.

Howto make various types of graph (Follow linksbelow the heading of "Graphics") by UCLA Academic Technology Service- Useful if you want to make the twoway graphs.

BYoption for GRAPH command by Stata Help - this is how to makegraphs for each category (e.g. country by country).

BINSCATTER -A Stata package written by Michael Stepner, which allows you to create ascatter plot from (literally) millions of observations, by groupingobservations into several intervals of the x variable and plotting the averagevalue of the y variable for each group. (HT: David Seim)

Nonparametric regressioncurve in a scatter plot - search for "nonparametric".

Draw kernel density functions for each group in the samegraph by UCLA Academic Technology Service

Guide to creating PNG images with Stata byFriedrich Huebler

How to create animated graphics using Stata, byChuck Huber.

How to create a map from Stata by FriedrichHuebler

Drawing social networks in Stata with Netplot byRense Corten --- if you are analyzing social network data.  

PROGRAMMING//編程

Programming inStata, RLAB Data Service, London School of Economics: these arelecture notes for a Stata course at Department of Economics, LSE. Lectures 3 to5 deal with how to make your own program with Stata (macroloopingado-file,etc.). Very useful.

Howto display variable labels: See this Statalist message by Nick Cox on 27 May, 2010. 

TheCAPTURE command is useful when executing a do file, especially when you want toconduct different data processing steps depending on whether there is an error(which can be expressed as 「if _rc==0」 in the Stata code). See the paragraphsbelow the heading 「If as a Way to Control Program Flow」 in thiswebpage.

How do I run Stata in batch mode? (Stata FAQ): ifyou want to run a do file without launching Stata interactively in Unix

TROUBLESHOOTING//問題處理

Ifyou always type 「set memory 900m」 after launching Stata because you use a largedataset, read this.

Ifyou run Stata on Windows and encounter an error message "op. sys. refusesto provide memory, r(909)", you may want to consider ditchingWindows. Here's why.

Ifyou encounter an error message "insufficient disk space, r(699)",see this Stata FAQ article. 

Ifyou encounter a warning message 「Warning: variance matrix is nonsymmetric orhighly singular」, see this post in Statalist by Jeff Pitblado of Stata Corp.

If youencounter an error message 「could not rename c:\ado\plus\stata.trk toc:\ado\plus\backup.trk r(699);」 when you try to install an ado file by the 「sscinstall」 command, read pages 47-48 of Lembcke (2009) 「Introduction to Stata」. Unfortunately, thismethod does not change the Stata setting permanently. Everytime you use an adofile, you have to do this. 

FROM STATA TO OTHER SOFTWARE//各軟體的交互

Export tables to Excel, written by Kevin Crow onThe Stata Blog.

How to transform dta file into csv file, by UCLAAcademic Technology Service. If data contains many decimal places, make sure touse the format command before the outsheet command so that Stata won’t randomlyround up values. If you don’t need the top row containing variable names, usethe noname option.  

Ordercommand by Stata Help - if you want to change the order ofvariables in the table you create from the Stata dataset.

How to edit Stata graphs in Microsoft Word, byStata FAQ

Stata tools for Latex, by UCLAAcademic Technology Service - for those of you who write empirical papers withLaTeX.

TEXTBOOK EXAMPLES//書籍示例

Stata commands for examples in Wooldridge's graduate leveltextbook Econometric Analysis of Cross Section and Panel Data,by UCLA Academic Technology Service

Stata commands for examples in Wooldridge'sundergrad level textbook Introductory Econometrics: A ModernApproach, by Boston College Academic Technology Support

Stata commands for Greene's textbook EconometricAnalysis (4th ed.), by UCLA Academic Technology Service

Accessible readings behind Stata commands//程序關聯的相關文章

IVREG2

Murray,Michael P. (2006) "Avoiding Invalid Instruments and Coping with WeakInstruments," Journal of Economic Perspectives, 20(4), p. 128.

CLUSTER optionfor REGRESS

Deaton(1997) The Analysis of Household Surveys, pp.74-77.

Bertrandet al. (2004) "How Much Should We Trust Differences-in-differencesEstimates?," Quarterly Journal of Economics, vol.119, p.271.

KDENSITY

Deaton(1997) The Analysis of Household Surveys, pp.171-76.

The following websites may or may not be useful (Ihaven't checked them yet):

Tips forusing Stata 10, by Survey Design and Analysis Services Pty Ltd

Roger Newson's Stata ado files

Useful Links by Kellogg Research Computing,Northwestern University

Stata materials byStas Kolenikov, Duke University - includes very graphically well-presentedStata course notes.

Stataado files by Sealed Envelope Ltd.

Stata Tutorial at University of Essex

EszterHargittai's Stata Goodies Page

Stataresources developed by Johannes Schmieder

計量經濟圈是中國計量第一大社區,我們致力於推動中國計量理論和實證技能的提升,圈子以海內外高校研究生和教師為主。計量經濟圈六多精神:計量資料多,社會科學數據多,科研牛人多,名校人物多,熱情互助多,前沿趨勢多。如果你熱愛計量並希望長見識,那歡迎你加入到咱們這個大家庭戳這裡,要不然你只能去其他那些Open access圈子了。注意:進去之後一定要看小鵝社群「群公告」,不然接收不了群息,也不知道怎麼進入咱們的微信群和計量論壇。


幫點擊一下下面的小廣告,謝謝支持!

相關焦點

  • Stata語言中的常用函數及其用法解釋, 在附上42篇Stata相關學習資料
    滿滿乾貨拿走不謝,2.Stata資料全分享,快點收藏學習,3.Stata統計功能、數據作圖、學習資源,4.Stata學習的書籍和材料大放送, 以火力全開的勢頭,5.史上最全Stata繪圖技巧, 女生的最愛,6.把Stata結果輸出到word, excel的乾貨方案,7.程式語言中的函數什麼鬼?
  • 介紹一款Stata的潛在替代工具:Gretl
    比如最經典的CCAPM的GMM估計,14行程序就搞定了,我在ubuntu上試了一下,可以直接apt-get install gretl安裝,略驚訝,要知道julia 都沒這個待遇。上手試了一下,very impressive。
  • 北京卷高考作文:你的光芒,無可替代
    ​從呱呱墜地成長到參加高考的此刻的過程中,每個人的心中,或多或少,都有迷茫的時候。迷茫著,自己的成績不好,將來要去哪裡去讀書。迷茫著,明天的自己,會在哪裡,迷茫著,數學題怎麼也寫不完……親愛的,別迷茫。我要告訴你,你的光芒,無可替代。
  • NBA與Stata
    然而,賽季之初,在考辛斯加入金州勇士的那一刻,有多少人認為NBA的這個賽季已然大結局——五星金州必然會所向披靡,無人能敵。nba2stata playerstats "name_pattern" [, playerstats_options] 該命令有如下選項:(1)stat(career|season|game):將球員的數據類型分為三類,分別是職業生涯數據、賽季數據和每場的比賽數據。如果不指定該選項,默認獲得球員的職業生涯數據。
  • 乾貨:UN和WTO推薦的最全且權威的實證研究方法及在Stata實現!
    Stata16新增功能有哪些? 滿滿乾貨拿走不謝,2.Stata資料全分享,快點收藏學習,3.Stata統計功能、數據作圖、學習資源等,4.Stata學習的書籍和材料大放送, 以火力全開的勢頭,5.史上最全Stata繪圖技巧, 女生的最愛,6.
  • 最該讓人珍惜的三大星座,善良,重情重義,且與眾不同,無可替代
    當然了,其實生活裡面,也完全不會缺少,這樣一類最該讓人去珍惜的存在。他們善良,且重情重義,他們不但能夠帶給你美好與溫暖,更多的時候,他們本身都是相當的與眾不同。又或者說,他們這類人原本就是非常的罕見,不管從哪個角度而言,也都是無可替代。而接下來,不妨就讓我們一起看下,都有哪些星座是這樣的吧。
  • Stata, R和Python視頻課程, 文章, 數據和代碼全在這裡, 真的受用無窮!
    滿滿乾貨拿走不謝2.Stata資料全分享,快點收藏學習3.Stata統計功能、數據作圖、學習資源等4.Stata學習的書籍和材料大放送, 以火力全開的勢頭5.史上最全Stata繪圖技巧, 女生的最愛6.把Stata結果輸出到word, excel的乾貨方案7.程式語言中的函數什麼鬼?
  • 可可西裡申遺成功,這支北大團隊的作用「無可替代」
    「至關重要、無可替代」,可以說是對一個人工作的最高評價了,但用來描述呂植教授的貢獻,並不是溢美之詞,而是非常公允的認可。推動地方政府發起申遺,帶領科學家團隊,撰寫材料,與世界遺產中心溝通,後續關注支持,呂植團隊參與了可可西裡申遺全過程。呂植,1965年出生於甘肅蘭州,北京大學保護生物學學科帶頭人。
  • 《哈利波特》中最無可替代的「瘋姑娘」——盧娜
    而要說最有個性的那一個,小編想一定非《哈利波特與鳳凰社》中出現的那個叫做「瘋丫頭」的姑娘吧!作為DA成員中最重要的那一個,盧娜·洛夫古德成為了很多哈迷小夥伴心中的女神,人氣指數更是超過了女主角赫敏以及金妮。那麼,為何盧娜會有如此高的人氣呢?小編今天就來叨一叨這個個性與眾不同的妹子,喜歡她的哈迷小夥伴們繼續往下看吧!
  • 頭像丨獨一無二,無可替代
    風裡雨裡 有我陪你我們不是秋日限定我們是來日方長溫柔和善良是看似普通但其實非常非常可貴的品質而他都有有些歌 即使不火 也能唱進你的心裡有些人即使什麼也不做 也能走進你的心裡灰燼 也有過熊熊燃燒的壯觀塵埃 說不定會有聚沙成塔的機會每個人都是獨一無二的自己 無可替代天堂未必在前方但地獄一定在身後如果結局非你所願
  • 獨一無二的三大星座,好看的外表,有趣的靈魂,從來都是無可替代
    在我們這個世界上,總是有太多的人,而大多數人都是平庸的。但即便如此,我們最終還是會發現這樣一類人的存在。他們可以說是最獨一無二,不但具備著好看的外表,同時更擁有著有趣的靈魂,從來都是無可替代。下面,就讓我們一起看下,都有哪些星座是這樣的吧!
  • Stata作圖
    默認時,stata將數據確定為連續型,如果我們需要stata做離散直方圖的話,加上選項discrete.histogram educ,discrete (選項用英文逗號隔開)還可以給直方圖加上密度圖像。.histogram educ,normal (這個選項就可以做正態分布密度圖像)
  • 職場中什麼人最容易晉升?能力基點,無可替代,你也能成為接班人
    職場中又是什麼人最容易晉升?首先不得不再提蔣凡這個人,他的晉升之路在阿里內部,絕對稱得上是火箭一般的速度。掌管淘寶、天貓和阿里媽媽,是阿里內部最年輕的合伙人,由阿里現任CEO逍遙子張勇一把手提拔起來,多次從張勇手裡接過總裁的擔子,沒有做過入職培訓,也沒有在阿里江湖裡像前輩們那樣給自己起什麼花名。
  • 【教育實錄】葉佳怡《做一個無可替代的引航人》
    江澤說,一旦有一點觸動了你的心,你就會念念不忘,並迫不及待要把它訴諸文字的。很感謝他,正是這樣的督促,促使我在培訓中聽得更為專注,並且及時整理自己的所想所感。我們的培訓是同時面向語文老師和英語老師的,所以學科教學方面的感想比較少。做一個無可替代的引航人葉佳怡|文為什麼說無可替代呢?
  • 趙麗穎壁紙:只要你是無可替代的,就會有更多喜歡你的人
    趙麗穎壁紙第114期:只要你是無可替代的,就會有更多喜歡你的人 來自穎火蟲的表白卡:只要你是無可替代的,就會有更多喜歡你的人。願你在我們的陪伴下,熠熠生輝。@趙麗穎來自穎火蟲一城柳絮吹成雪的表白卡:在回眸之處,那個你,竟然成了我人生中最靚麗的「風景」,醉人,醉心,伴你一生,無怨無悔,此生無憾。趙麗穎你是我們的榜樣,堅強、奮進、勇敢、有夢想、有追求……因此,在追夢的路上,我們願與你同行!
  • 你是我的無可替代,我是你的獨一無二,如此而已。
    關於愛情,首先得需要感覺,感覺不會騙人的,只有自己喜歡上一個人,心裏面產生了感覺,才會想要去和他在一起,他的身上有一種特別的吸引,讓你的心情不自禁的跟著他跳動。很多人也一直都在想,愛情到底是怎麼樣子的?千百年來,誰也沒辦法說清楚,不過有幾個特點是必須有的,親密,激情,承諾是最基本的,缺一不可!當你愛一個人的時候,漸漸的會變得不像自己,你會跟著對方的樣子去改變,你總是開心著他的開心,快樂著他的快樂,心甘情願的畫地為牢。
  • 被錯用千年的一個漢字,只有他呼籲糾正,專家卻說:這無可替代
    漢字的起源可以追溯到八千年前,雖然有「上古結繩而治」的說法,但最終從甲骨文中得出這裡才是漢字的源頭,象形文字是漢字的雛形,經過幾千年的發展與演變之後,形成不同的字體,楷書則成為了漢字文化中的主流。
  • 5方面無可替代
    待產包,簡簡單單的三個字,裡面包含的內容卻有很多,其中包括:產婦衛生用品、新生兒用品等等。作為一名新手孕媽,自然是不知道待產包需要準備些什麼。然後,孕媽們便會在網上找各種攻略,又或者詢問周邊的孕媽,準備最經濟、實用的待產包。而後,孕媽們會發現,有一樣東西很陌生,那就是——刀紙。
  • 泰劇《無可替代》:雞媽媽家三大男CP主演,首播就讓粉絲欲罷不能
    小嫻作為泰劇迷(其實是腐女)一枚,正在追的就有《你是我的氧氣》《白色齒輪》《無可替代》《男校風雲》《特長生2》《不期而愛2》,還有25號即將上映的《鬼逐》和29號上映的《Y情公寓2》,太多了數不過來。今天主要講下《無可替代》這部劇,為什麼說它讓粉絲欲罷不能,主要是因為演員太可了,由GMM(雞媽媽)家三對當紅男CP出演。這部劇的英文名叫《I am Tee,Me Too》,不同的翻譯組,翻譯的中文名也不一樣,目前就有三個名字,分別是《無可替代》《無可Tee代》《康惕家園》。
  • stata——胡言亂語
    不知道取什麼標題是不是有寫論文那味兒了ahhh友情提示:可直接劃拉到文末看「問題與建議」求生欲:就是皮一下,要是有不規範的部分,歡迎指正。摘要:用stata寫論文卡了怎麼辦,關注王三歲,也沒啥子用。(略)關鍵詞:畢業生;實證研究;stata報錯;連接超時一、背景研究當代大學生在畢業前會經歷,寫論文、修改、修改、修改、再修改、定稿、答辯、修改、修改、再修改這一過程。在此過程中,最值得我們關注與研究的部分是「寫論文」和「答辯」。