A different instruments for best accounting, budgeting, and accounting I in fact accept begin for my aggregation business downloadable at https://www.excel-accountin.... Back its command for banking assay for action barter for accounting to align accomplishment articulation, adapt sheet, money yield if description and invoicing. Money assay allotment accepted year and approaching year will what is added be completed at charge for continued estimating
Re: Creating Excel tables with putexcel part 3: Writing custom reports for arbitrary variables
Re: Creating Excel tables with putexcel part 3: Writing custom reports for arbitrary variables
Hi, thank you so much. Very impressive.
How could I use the code block 9 for multiple Y variables? When I have the variable the command overwrite the table.
Best wishes,
Re: Export tabulation results to Excel—Update
hi, is it possible to format date variables within the tab2xl command?
I try to export a table with the variables month(formated as ym) and sex.
If I use tab2xl I have just numbers and no dates.
Re: Export tabulation results to Excel—Update
This program is exactly what I am looking for, however, I am still running Stata 14.2. Would it be possible to obtain a previous version of tab2xl that might work with 14.2? Many thanks!
Re: Web scraping NFL data into Stata
Try using rolling ,window(5) clear:correlate ....
Re: How to automate common tasks
Thank you for such great articles; where else could anyone get that type of information in such an ideal approach of writing? I’ve a presentation subsequent week. I have been on the look for such information, so that I am well prepared with a vast variety of knowledge on the same topic.
Quicken Deluxe
Quicken Starter
Re: Web scraping NFL data into Stata
You must specify the season() option to remove duplicate names for each year. For example, to use this years stats you would type:
nfl2stata player quarterback, season(2018) seasontype(reg) clear
graph bar (asis) yards if yards > 500, exclude0 ///
over(name, sort(yards) descending label(angle(forty_five) labsize(small))) ///
blabel(bar) title(2018 Passing Yard Leaders)
Re: Export tabulation results to Excel—Update
It's currently not possible to keep the date format. You could use the collapse command and export excel to get close to the table you want. You would have to program to get the exact table.
Re: Export tabulation results to Excel—Update
Email into tech-support@stata.com to get the old tab2xl command that worked in Stata 14.
Re: xtabond cheat sheet
rder z Prob > z
1 -.86486 0.3871
2 -1.0379 0.2993
I cannot reject no autocorrelation of order 1
Re: Web scraping NFL data into Stata
Hi Kevin and Chris, Nicely done! I'm just coming across this post, and I'll probably run the scrape tonight, but in the meantime, could you clarify something for me.... There are a set of commands under the heading "Commands" (ironic, eh?), and the first two commands are for 2 different sets of information, but the command extensions in [brackets] are identical. I'm not well-versed in all things Stata, so is it supposed to look like that, or is it a typo? Thanks so much!
To load game-by-game data into Stata, use
nfl2stata game "position" [, game_summary_options]
To load game summary data into Stata, use
nfl2stata gamesummary [, game_summary_options]
Re: How to automate common tasks
This was a great post, I am always looking for better ways to make my code more efficient.
Re: Structural vector autoregression models
how to find correlation of demand shocks with different countries?
Re: How to automate common tasks
disqus_QMaV7rYyKY 3+
Re: Calculating power using Monte Carlo simulations, part 1: The basics
I'm a little perplexed by line four of the sample program:
display "n = `n'"
Seems like a lot of code to display an integer.
Re: Web scraping NFL data into Stata
Yes. This is how most Stata commands are designed to have similar syntax.
Re: How to successfully ask a question on Statalist
Hello,
I want to ask you a question about gmm regression and the xtabond2 command:
Well, i want to ask you how to introduce an interaction term?
I want to ask you if an interaction term between an endogenous and exogenous variable (the exogenous variable a dummy) should be taken as endogenous or exogenous? I mean should it be putted in the gmmstyle () or in the ivstyle ()?
Re: How to successfully ask a question on Statalist
Hi,
I use the command gsem (multilevel model) with MI (multiple imputations):
mi estimate, cmdok: gsem (..)
The command works well but for mlogit for example, I do not get any statistical test like F-test , or degrees of freedom. Just the output of the table of regression ( coefficients, p value, etc)
I would like to know if there are options to get it ?
Great thanks!
Re: Export tabulation results to Excel—Update
Hi. I have an issue when using tab2xl. When cross-tabulating in Stata, I get "normal" results, say 300 obs. there, another 400 obs. there. But, when using tab2xl, the entire table is made of zeros in the excel. Why is this happening? Thanks in advance.
Re: Web scraping NFL data into Stata
I used the NBA command for a research project last semester and it was great! Is there a similar command for MLB data?