RE: [Rcom-l] RExcel Background Server Config & library(tkrplot)

2008-02-15 Thread Wayne.W.Jones
related issues Subject: Re: [Rcom-l] RExcel Background Server Config & library(tkrplot) Hi, still for the problem of short path names. The following code works with background server and forground server too. env<-environment(.libPaths) assign(".lib.loc",shortPathName(get(&qu

Re: [Rcom-l] RExcel Background Server Config & library(tkrplot)

2008-02-14 Thread Prokaj Vilmos
Hi, still for the problem of short path names. The following code works with background server and forground server too. env<-environment(.libPaths) assign(".lib.loc",shortPathName(get(".lib.loc",envir=env)),envir=env) library("tkrplot") Vilmos [EMAIL PROTECTED] írta: Hi RExcel users, I am

Re: [Rcom-l] RExcel Background Server Config & library(tkrplot)

2008-02-13 Thread Erich Neuwirth
This tool might help http://www.softpedia.com/get/System/File-Management/Set-Short-File-Name.shtml Prokaj Vilmos wrote: > Hi, > At the moment I see what went wrong, with no idea how to correct it, or > what causes this behaviour. > > The .First.lib function of this package contains the following

Re: [Rcom-l] RExcel Background Server Config & library(tkrplot)

2008-02-13 Thread Prokaj Vilmos
Hi, At the moment I see what went wrong, with no idea how to correct it, or what causes this behaviour. The .First.lib function of this package contains the following lines file <- system.file(path, package = pkg, lib.loc = lib)[1] .Tcl(paste("load", file, "Rplot")) where the values of

[Rcom-l] RExcel Background Server Config & library(tkrplot)

2008-02-13 Thread Wayne.W.Jones
Hi RExcel users, I am exploring the package tkrplot. This allows you to build interactive plots using tctlk. >From Excel I am running the following source using "Rinterface.RunRFile": library(tcltk) library(tkrplot) tt <- tktoplevel() bb<-1 img <-tkrplot(tt, function() plot(1:20,(1:20)^bb))