Thank you! This is really useful
Re: Export tabulation results to Excel—Update
Re: Importing Twitter data into Stata
What happens when you run the below commands?
net cd http://www.stata.com/users/
net cd kcrow
net install twitter2stata, replace
which twitter2stata.ado
which twitter2stata-1.0.4.jar
Re: How to create animated graphics to illustrate spatial spillover effects
A very creative post
Re: Importing Facebook data into Stata
Type clear to remove any unsaved data from memory. Facebook no longer supports the API we used.
This command no longer works.
Re: Nonparametric regression: Like parametric regression, but not
Hi everyone
Happy I'm here. I was seeking the non parametric equivalence of my 48 observations time motion study with a slightly negatively skewed time distribution
I see a kernel regretion like this
npregress kernel hectoliters taxlevel, vce(bootstrap, reps(100) seed(123))
Could I please know the meaning of replications and seed and their implications on results. What is the advantage of 100 replications over 50? What is the best practice?
Thanks
Re: A simulation-based explanation of consistency and asymptotic normality
Thanks for the info.
Re: Unit-root tests in Stata
Thank you for your useful work !
Re: Tests of forecast accuracy and forecast encompassing
K2= # of additional regressors in the model with more regressors
Pi= P/R
P is the number of out-ofsample observations and R is the number of observations used to construct the first forecast.
Re: Stata 15 announced, available now
How to solve for this problem? I used data from http://www.stata-press.com/...
dsge (p={beta}*E(F.p)^gdpdef)///
syntax error
equation /// invalid
r(198);
Yulia
Re: Export tabulation results to Excel—Update
This is very useful command. But I think it does not work on STATA version 12. Any alternative for STATA v.12?
Re: Export tabulation results to Excel—Update
These two commands only work with Stata 15. The -putdocx- command is only in Stata 15.
Re: Export tabulation results to Excel—Update
Interesting
Re: Export tabulation results to Excel—Update
How to Export tabulation results to LaTex?
Re: Retaining an Excel cell’s format when using putexcel
keepcellformat is not working in stata15. Any reason?
Re: Web scraping NFL data into Stata
Hi Kevin,
I like your command, however it doesn't work at my computer. I downloaded it to Stata and when I run it, this error message occurs:
nfl2stata scrape, season(_all)
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImp...:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.stata.Javacall.load(Javacall.java:130)
at com.stata.Javacall.load(Javacall.java:90)
Caused by: java.lang.NoClassDefFoundError: com/stata/StWebTools
at com.stata.chassell.Stata.updateByYear(Stata.java:216)
... 6 more
Could you please help me?
Thanky a lot
Matthias
Re: Web scraping NFL data into Stata
First, try and reinstall the command.
net install http://www.stata.com/users/..., replace
Next, try and just scrape the 2018 season.
nflstata scrape
Re: Export tabulation results to Excel—Update
We don't have that yet, but you could use putpdf do export to a pdf file. You can just copy tab2docx.ado file to tab2pdf.ado and do a find and replace on putdocx to putpdf because the syntaxes are almost identical. Make sure your program name at the top of the code is tab2pdf.
Re: Web scraping NFL data into Stata
Having the same problem as Matthias. Reinstalled it but the problem still exists with the same error message
Re: Web scraping NFL data into Stata
Hi Kevin, You've built a nice command. Its running for the most part on my environment but I'm running into a few hiccups (mostly due to my inexperience with stata).
Trying to run the bar graph command but getting kicked back with the 'variable _variables does not uniquely identify the observations' error. I'm tracing the cause back to the if statement but unsure of how to debug.
Re: Web scraping NFL data into Stata
This error occurs because your Stata/Java Runtime is not up-to-date. Type
update all
in your Stata Command Window to update Stata.