[R-pkg-devel] package 'corpus' not available?

2018-12-05 Thread Dalthorp, Daniel via R-package-devel
--- Begin Message --- Dear All, I am trying to submit a minor update of new package (GenEst) to CRAN, but got an error that has not appeared in releases earlier this year (the latest was two weeks ago): * checking package dependencies ... ERROR Package required but not available: ‘corpus’ I see t

[R-pkg-devel] Rtools not communicating?

2017-11-17 Thread Dalthorp, Daniel
Dear all, I have used devtools with success and pleasure to build packages in the past, but everything has changed recently. No success using build(binary = T) in Windows 7 (with rtools34 and R-3.4.2). MANY hours searching for solutions. Can someone help me? In particular, I use devtools::build(bi

[R-pkg-devel] "not resolved from current namespace"...sometimes!

2016-05-25 Thread Dalthorp, Daniel
Hi all, I'm trying to build a package that makes use of the function actual::pllogis. Sometimes the build works fine and I can use the function without any problems. After other builds I get: Error in .External("actuar_do_dpq", "pllogis", q, shape, scale, lower.tail, :"actuar_do_dpq" not reso

Re: [R-pkg-devel] develop package with lots of tcltk in it

2016-05-16 Thread Dalthorp, Daniel
n be solved with an environment inside of the > package? I've done this in the past with good results. Check out Dirk's > rpushbullet for an example: > > https://github.com/eddelbuettel/rpushbullet/blob/master/R/init.R > > the first line of code he sets one up > .p

Re: [R-pkg-devel] develop package with lots of tcltk in it

2016-05-12 Thread Dalthorp, Daniel
rm.R: tt2 <- tktoplevel() tk.y<-tclVar() y.edit<- tkentry(tt2, textvariable = tk.y, width = 5) anscalc <- tkbutton(tt2, text = "calculate answer", command = function() tkmessageBox(message=as.numeric(tclvalue(tk.y)) * as.numeric(tclvalue(tk.x))) ) tkgrid(y.edit, anscalc) -Dan On

[R-pkg-devel] develop package with lots of tcltk in it

2016-05-11 Thread Dalthorp, Daniel
I have an R/tcltk application that is designed for use primarily by people who don't know R and don't care to learn much about it. I'd like users to be able to use the software with a bare minimum interaction with R. Although the application has some 15000 lines of code in a couple dozen .R files,