similar to: Problemas al cargar Rcmdr

Displaying 20 results from an estimated 700 matches similar to: "Problemas al cargar Rcmdr"

2008 Jul 24
0
unable to load a library
hello all, i'm running R-2.6.1 on solaris 10 (x86). I added the package aplpack without problems, but when i try to use it, i got errors: > library(aplpack) Loading required package: tcltk Error in namespaceExport(ns, exports) : undefined exports :addTclPath, as.tclObj, is.tclObj, is.tkwin, tclfile.dir, tclfile.tail In addition: Warning message: S3 methods '$.tclvar',
2012 Aug 29
1
Problem Installing a Package
I have just installed the latest version of R on a openSUSE 12.1 system running on an ORacle VM VirtualBox and have encountered a problem with installing ChemometricsWithR. Here is the output: > library("compiler") > install.packages("ChemometricsWithR") Installing package(s) into ?/home/computation/R/x86_64-unknown-linux-gnu- library/2.15? (as ?lib? is unspecified)
2012 Aug 24
1
Error while installing gsubfn_0.6-4.tar.gz for R 2.15.1
Hi, I am getting the follwoing error while installing gsubfn_0.6-4.tar.gz library for R. R version is 2.15.1 and i am installing on Redhat linux version 2.6.18-238.9.1.el5 (mockbuild at x86-002.build.bos.redhat.com<mailto:mockbuild at x86-002.build.bos.redhat.com>) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-50)) * installing to library ?/home/mapred/installables/R/library? * installing
2010 Aug 05
1
Error in as.environment(pos): using 'as.environment(NULL)' is defunct
Hello, I?m using R 2.11.1 with Tinn-R 1.17.2.4. I hope the given informations are enough (it?s my first entry here) The as.environment(pos) error appears in using the following code which should open a function in an other R-file. Here some extractions of the code: .... HZ<-tclVar(seq(length=a,from=1,by=0)) #(a is defined by a tkentry-element) VZ<-tclVar(seq(length=a,from=1,by=0))
2015 Jan 14
0
Is the tcltk failure in affylmGUI related to R bug 15957
Seems unlikely that that particular bug is involved. I seem to recall some change related to inadvertent variable capture in .TkRoot$env (?). At any rate, we currently have > parent.env(.TkRoot$env) <environment: R_EmptyEnv> which used to be > parent.env(.TkRoot$env) <environment: R_GlobalEnv> as a result, this won't work any more because R_EmptyEnv has no operators and
2010 Aug 11
0
R and TK Error "can't find objects"
Dear R People, I?m trying to link R and TK. I?m using R 2.11.1 with Tinn-R 1.17.2.4. For simple examples like the following one it?s working (see the initiation of the variables, the handler and the link to the function which multiply Zahl, Exponent and Factor) : require(tcltk) Ergebnis<-tclVar(c(0,0,0,0,0,0)) Zahl<-tclVar(c(0,0,1,1,1,0)) Exponent<-tclVar(c(1,1,1,1,1,1))
2015 Jan 18
1
Is the tcltk failure in affylmGUI related to R bug 15957
Thanks Peter and Dan for your replies. After learning a bit more about tcltk and environments etc. I have replaced Try(n <- evalq(TclVarCount <- TclVarCount + 1, .TkRoot$env)) with Try(n <- .TkRoot$env$TclVarCount <- .TkRoot$env$TclVarCount +1L) as you suggest. It now works for both R-3.1.1 and R-3.1.2+ (My understanding is that the Try function is there to put a GUI box
2003 Aug 24
0
Tcltk changes in R 1.8.0
I have committed a set of changes to the tcltk package for R-1.8.0. The most important changes are 1) Support for Tcl arrays, which should come in handy for people playing with things like the tkTable extension. Basically these work like tclVar objects but can be subscripted (notice that these beasts are associative - like a Perl hash - rather than objects of set dimensions). Basic
2005 Oct 24
1
tk problem with R 2.2.0 on wine/linux
Actually I am trying to run sciview-R and encounted some problems with tk, and I thought I'll check the basic library(tcltk) functionallity, just to be sure. Anybody seen that '[tcl] bad window path name ".1".' message before? Prof. Philippe Grosjean: yes, I have managed to load most of sciview-R under Wine, except the tcltk library! =================== R : Copyright 2005,
2008 Oct 30
1
tklistbox selection
Hi, I'm posting yet another question about tcltk since I'm still struggling with the package. I'm trying to create a tklistbox and a ttkcombobox on the same parent and am having a problem. Here's an example: library(tcltk) tt <- tktoplevel() tcl1 <- tclVar() tcl2 <- tclVar() tclObj(tcl1) <- letters[1:5] tclObj(tcl2) <- LETTERS[1] tb1 <- tklistbox(tt,
2003 Oct 22
1
Core dump when calling tclvalue (PR#4724)
Full_Name: Neil McKay Version: 1.8.0 OS: Linux (RedHat 7.1) Submission from: (NULL) (129.124.42.210) I get a core dump when executing the following code: > library("tcltk") > zzz<-tclArray() > tclvalue(zzz) Running under gdb gives this output: Program received signal SIGSEGV, Segmentation fault. makeRTclObject (tclobj=0x0) at tcltk.c:48 48
2004 Jun 30
1
help with tclVar
Hi, I can' t load a variable tcltk declared with tclVar, why is this?, the exmple above explain me ,Thanks Ruben a<-tclVar(init="") > f<-function(){ + a<<-"pipo" + } > f() > a [1] "pipo" > tclvalue(a) Error in structure(.External("dotTcl", ..., PACKAGE = "tcltk"), class = "tclObj") : [tcl] can't
2003 Jul 09
3
`acting' on variables
Dear list, How can one "from within a function" act on these variables ("outside" a function) that were given as arguments. If I have e.g. this beginning of a function: foo <- function(tiro){ app.tiro <- 3 * tiro [...] } How can I from within the curly brackets e.g. concatenate the app.tiro to the particular variable I passed as the argument `tiro' ? What is
2010 Aug 12
2
accessing tcl variables within R and tcl
Dear R users, I have some troubles with dealing with tclObj objects. I try to explain it with a toy example: Say I define the following tcl procedure which just prints out each list element library(tcltk) .Tcl('proc test {myList} { foreach i $myList { puts stdout $i } }') and I call it with: > tcl('test',letters[1:5]) # Works as expected Now say I define
2009 Jan 20
1
tclarray with embedded spaces in data
I would like to use a tclArray: mytkarray <- tclArray() as the variable for a table: table1 <- tkwidget(f1, 'table', variable= mytkarray) but if I include character strings with embedded spaces, I get braces appearing in the table. I can remove them using a non-R tclarray, (the difference between the first example of http://www.sciviews.org/_rgui/tcltk/Tktable.html and
2004 Apr 23
4
Tcl Tk table
Hi I've a problem with the following example: library(tcltk) .Tcl("array unset tclArray") myRarray <- matrix(1:1000, ncol=20) for (i in (0:49)) for (j in (0:19)) .Tcl(paste("set tclArray(",i,",",j,") ",myRarray[i+1,j+1],sep="")) tt<-tktoplevel() table1 <- tkwidget(tt,"table",variable="tclArray",
2011 May 11
0
CEBA-2011:0504 CentOS 5 i386 sabayon FASTTRACK Update
CentOS Errata and Bugfix Advisory 2011:0504 Upstream details at : http://rhn.redhat.com/errata/RHBA-2011-0504.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) i386: 677a9845e58027b5844d227d846932ac sabayon-2.12.4-7.el5.i386.rpm c06c880eb475b8cf282691548d264812 sabayon-apply-2.12.4-7.el5.i386.rpm Source:
2011 May 11
0
CEBA-2011:0504 CentOS 5 x86_64 sabayon FASTTRACK Update
CentOS Errata and Bugfix Advisory 2011:0504 Upstream details at : http://rhn.redhat.com/errata/RHBA-2011-0504.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) x86_64: 8c4d6b405ab5a290d72cd3665ae95f8e sabayon-2.12.4-7.el5.x86_64.rpm 79502facaf07f42ebdcc548a93005ec0 sabayon-apply-2.12.4-7.el5.x86_64.rpm Source:
2011 Sep 22
0
CEBA-2011:0504 CentOS 5 i386 sabayon Update
CentOS Errata and Bugfix Advisory 2011:0504 Upstream details at : https://rhn.redhat.com/errata/RHBA-2011-0504.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) i386: 59f26b96dc70e80b62da5860cd960cb0 sabayon-2.12.4-7.el5.i386.rpm e31a6ba04181b74dda8b67174bfb8496 sabayon-apply-2.12.4-7.el5.i386.rpm Source:
2011 Sep 22
0
CEBA-2011:0504 CentOS 5 x86_64 sabayon Update
CentOS Errata and Bugfix Advisory 2011:0504 Upstream details at : https://rhn.redhat.com/errata/RHBA-2011-0504.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) x86_64: a7779118ff40075ac01bcb145dfae6f2 sabayon-2.12.4-7.el5.x86_64.rpm 80be5c176394c38bda29babb9c982e1f sabayon-apply-2.12.4-7.el5.x86_64.rpm Source: