Stata - wbopendata r(601) error - runtime-error

i've recently installed wbopendata in stata 12.0.
when i try to run the comand
wbopendata, indicator(SH.STA.OWGH.ZS; SH.STA.STNT.ZS; SH.STA.MALN.ZS; SH.STA.WAST.ZS; SN.ITK.DPTH; SH.STA.BRTW.ZS; SH.STA.BFED.ZS;NY.GDP.PCAP.CD; NY.GDP.MKTP.CD; GDPPCKD) long clear
this error apears:
file C:\Users\user\AppData\Local\Temp\ST_0c000002.tmp not found r(601);
Does anybody know how to fix it?

I also have an error r(601) with wbopendata and fix it by updating to latest Stata (13).

Related

object 'rlang_tilde_eval' not found after library updates

I have been using the combcoint library for quite some time. Today I installed some new packages in R for my work and since then I have been getting an error, when I try to run the function bayerhanck. The error itself:
Error in p_value_Fisher_bc ~ poly(stat_Fisher_all_bc, 12) * k_dummy :
object 'rlang_tilde_eval' not found
I assume this there is a technical solution to this, but I have not been able to find it.

Geomorph not functioning after update

I recently updated my MacBook air (2017) to the Mojave OS and proceeded to update my version of R and Rstudio. Unfortunately, ever since the 'plotTangentSpace' command no longer functions appropriately even when attempting to run the example 'plethodon' code from the Geomorph vingette, I always receive the following error in the output (bolded below):
data(plethodon)
Y.gpa<-gpagen(plethodon$land) #GPA-alignment
|====================================================================================| 100%
gp <- interaction(plethodon$species, plethodon$site)
plotTangentSpace(Y.gpa$coords, groups = gp)
Error in plotTangentSpace(Y.gpa$coords, groups = gp) :
unused arguments (Y.gpa$coords, groups = gp)
I have tried uninstalling and reinstalling R for a MacOS many times including versions 4.0.2, 3.6.3, 3.6.1, and 3.2.1. I have also uninstalled and reinstalled XQuartz several times.
If anyone has encountered a similar issue or has any other ideas I can try I would really appreciate the help. Thank you!
If you execute:
?plotTangentSpace
You should see that this is a deprecated function. That means you should not be using it. It says:
Notes for geomorph 3.3.0 and subsequent versions
I suspect you have not updated your copy of the vignette. There are instructions on the help page for an alternate approach. The example in the help page for the suggested function is:
data(plethspecies)
Y.gpa <- gpagen(plethspecies$land) #GPA-alignment
### Traditional PCA
PCA <- gm.prcomp(Y.gpa$coords)
summary(PCA)
plot(PCA, main = "PCA")
For the plethodon data they suggest:
PCA.w.phylo <- gm.prcomp(Y.gpa$coords, phy = plethspecies$phy)
summary(PCA.w.phylo)
plot(PCA.w.phylo, phylo = TRUE, main = "PCA.w.phylo")
So start a new session (to unload the currently loaded geomorph namespace, and execute this at the r session command line:
install.packages("geomorph")
You should be getting version 3.3.1 of the geomorph package.
I think I found the problem! In my case, the error was due to a old version of the package RRPP, which is required by Geomorph. After updating it, Geomorph is working perfectly! Hope this can be useful for you too.
I came across the same error but after updating the RRPP and rgl packages required for geomorph, the gm.prcomp() function worked for me. I hope this helps if you haven't figured it out already.

devtools install_github fails

I've tried everything I could think of but still can't get this to work. I think it has to do with indentation as it works fine locally(build version). Here is the error I get:
Error in read.dcf(path) :
Found continuation line starting ' dplyr(>= 0.7.8), ...' at begin of record.
Sample of my code:
Imports:
dplyr(>= 0.7.8),
caret(>= 6.0-81),
tidyr(>= 0.8.2),
reshape2(>= 1.4.3),
plyr(>= 1.8.4),
magrittr(>= 1.5)
How I tried to install:
devtools::install_github("https://github.com/Nelson-Gon/manymodelr")
I did get the same earlier and solved it by limiting my description to a single line. Thanks in advance.
The issue has been fixed like this which also worked for me according to: https://github.com/r-lib/devtools/issues/1978
Run devtools::install_github("r-lib/remotes")
Restart R.
Run devtools::install_github("...") for the intended package.

While calling RcmdrPlugin.BCA I get this error message: object 'importRODBCtable' not found

I call library('RcmdrPlugin.BCA') but unfortunately i get error message like this:
object 'importRODBCtable' not found
Before library('RcmdrPlugin.BCA') have you executed install.packages("RcmdrPlugin.BCA")?
If you did it, the problem may be the version: https://cran.r-project.org/web/packages/RcmdrPlugin.BCA/index.html
You have to work with R version above 3.0.0. and Rcmdr above 2.1-0.

R and RGoogleDocs - trouble with auth

here's the deal with RGoogleDocs: when I run:
auth = getGoogleAuth("mymail#gmail.com", "my pass",service="wise")
I always have this (I try different login/passw):
Error in strsplit(ans, "\\\n") : non-character argument
I am trying different ways for it with no success. Please help, what's wrong? And
may be there're any other packages for connect R and Google sheets? Thanks
~~~~~~~~~~~~~~~~~~~~~~~~ 1 Day later:
I fix it with library(googlesheets), that works fine

Resources