search for: rdyncal

Displaying 6 results from an estimated 6 matches for "rdyncal".

Did you mean: rdyncall
2011 Dec 16
1
makeNamespace and rdyncall
Dear R Core Team, I have a question related to the programming interface for namespace object creation at run-time. This is something that I need in the rdyncall package: During the dynamic linkage binding of a shared C library, an R namespace object is created that gets populated with call wrappers, symbolic constants and type information objects. For example, > dynport(SDL) # create namespace, populated with wrappers to SDL library > search()...
2012 Aug 20
1
rdyncall fears removal from CRAN
Dear R Core and CRAN Team, I received a warning that the rdyncall package [1] will be archived and removed from the main CRAN distribution at 7th of September if I can not get rid of .Internal calls. > From: ripley at stats.ox.ac.uk (Prof Brian Ripley) > Subject: Use of .Internal in CRAN package rdyncall > Date: August 14, 2012 11:09:06 AM GMT+02:00 &g...
2015 Jul 24
0
Rcartogram package - error message
I am trying to install two R packages to produce cartograms like in the work of Gastner and Newman: http://www.pnas.org/content/101/20/7499.full.pdf but I have a problem installing Rcartogram and rdyncall packages. Both are not available in CRAN and have to be installed from archivea and produce errors: > install.packages("C:/Users/Milena/Downloads/*Rcartogram*_0.2-2.tar.gz", > repos = NULL, type = "source") Installing package into ?C:/Users/Milena/Documents/R/win-libra...
2011 Jul 25
1
rdyncall 0.7.3
Initial Announcement: Package rdyncall released on CRAN. (Version 0.7.3) The package was presented at the Use!R 2009 with the title 'An improved Foreign Function Interface for R' and is now available on CRAN and considered stable for a large range of R platforms. The package provides a cross-platform framework for dynamic b...
2011 Jul 25
1
rdyncall 0.7.3
Initial Announcement: Package rdyncall released on CRAN. (Version 0.7.3) The package was presented at the Use!R 2009 with the title 'An improved Foreign Function Interface for R' and is now available on CRAN and considered stable for a large range of R platforms. The package provides a cross-platform framework for dynamic b...
2017 Oct 28
0
making-a-lisp implementation of R
Hello, I was trying to make my R implementation of making-a-lisp https://github.com/kanaka/mal/tree/master/ And to my surprise I got stuck in the starting blocks. There is already a mal implementation of R here https://github.com/kanaka/mal/tree/master/r but it uses rdyncall package which is not on CRAN anymore and I thought it would be fun to try my skills here The following code is step0_repl.r but it does pass the test. Do you have any idea why? READ <- function(arg){ return(arg) } EVAL <- function(arg){ return(arg) } PRINT <- function(ar...