--- 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
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
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
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
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
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,