Thanks. You are right:
(To be certain, I also checked "findfile rpath.ado")
Code:
. findfile Rpath.ado file "Rpath.ado" not found r(601);
. findfile Rpath.ado file "Rpath.ado" not found r(601);
. net install Rcall, replace from("https://raw.githubusercontent.com/haghish/Rcall/master/") checking Rcall consistency and verifying not already installed... file https://raw.githubusercontent.com/haghish/Rcall/master/stata.output.r not found could not copy https://raw.githubusercontent.com/haghish/Rcall/master/stata.output.r (no action taken) r(601);
. github install haghish/Rcall checking Rcall consistency and verifying not already installed... file https://raw.githubusercontent.com/haghish/rcall/master/stata.output.r not found could not copy https://raw.githubusercontent.com/haghish/rcall/master/stata.output.r (no action taken) r(601);
. Rcall setpath "/usr/local/bin/R" . R: 3+4 [1] 7
. Rcall ---------------------------------------------------- R (type end to exit) ------------------------------------------------------------------- . a <- c(1,2,3) . a [1] 1 2 3
Rcall vanilla: a = c(1,2,3); a;
Rcall clear
local Rdir : dir "`folder'" dirs "R-*"
local Rdir : dir "`folder'" dirs "R-*", respectcase
capture program drop rprog1 program define rprog1 syntax Rcall vanilla: /// setwd("F:/DOH"); /// cd end rprog1
Comment