similar to: Nombres de variables variables

Displaying 20 results from an estimated 200 matches similar to: "Nombres de variables variables"

2018 Apr 10
1
Fail to save an object using name as string
Dear list member, I think that I have detected a strange behavior of the save() command: > year <- "2000" > assign(paste0("Var_", year), list(A=10, B=20)) > get(paste0("Var_", year)) $A [1] 10 $B [1] 20 # At this point all is ok, I have created a list of name Var_2000 > save(paste0("Var_", year), file=paste0("Var_", year,
2011 Feb 12
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
Nice! I'm interested... would also be nice to cross this with llvm diff, eh? :) Cheers, Renato On 12-Feb-2011 7:28 AM, "Talin" <viridia at gmail.com> wrote: > I've written a little GUI application that displays an LLVM module as an > expandable tree, which can be useful for examining the module's contents. > Some features: > > - Based on wxWidgets, so
2011 Feb 12
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
Hi Talin, This looks interesting..! Can you email me your tool? Cheers, Raghu. ----- Original Message ----- From: "Renato Golin" <rengolin at systemcall.org> To: "Talin" <viridia at gmail.com> Cc: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu> Sent: Saturday, February 12, 2011 1:31:10 AM Subject: Re: [LLVMdev] Introducing LLBrowse: A
2011 Feb 12
8
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
I've written a little GUI application that displays an LLVM module as an expandable tree, which can be useful for examining the module's contents. Some features: - Based on wxWidgets, so it's completely cross-platform. - CMake build script can locate both LLVM and wxWidgets installations automatically. - Loads either .ll or .bc files. - Supports browsing of LLVM types,
2011 Feb 12
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
Looks cool Talin. Personally it would be nice if it was checked into llvm.org, but is wxWidgets LGPL like license an issue for llvm's repository? Anyway I would be interested in a copy otherwise under a BSD like license. Thanks in advance Garrison On Feb 12, 2011, at 2:22, Talin wrote: > I've written a little GUI application that displays an LLVM module as an expandable tree,
2011 Feb 13
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
LLBrowse has now been checked in to the llvm.org subversion repository: http://llvm.org/svn/llvm-project/llbrowse/trunk/ There are instructions for building and running in the doc/ directory. <http://llvm.org/svn/llvm-project/llbrowse/trunk/>First task if someone wants to take it on - update all of the source files to have the UIUC license info at the top, and add a LICENSE.txt file :)
2009 Jan 22
1
looping over a string
Hi list, I'm using R 2.8.1 under Windows vista. I have the following problem: First of all I create a string-vector. Then I "convert" these strings into variables and assign a vector of numeric values. So far everything's fine. Now I want to do nearly the same again: I create another string-vector and I want to assign the variance. So I have to loop over the first
2012 Jun 28
4
Printing a variable in a loop
Dear R Users: I'm a STATA user converting to R, and I'd like to be to do the following. #Assign var_1 and var_2 a value 10->var1 20->var2 #Now I'd like to print the values of var_1 and var_2 by looping through var_1 and var_2 in such a manner: while(y<3){ print(var_y) y+1->y } In STATA, the "y" appended to " var_" is called the local variable and
2004 Aug 06
1
cwRsync, Windows-2000, use of 'auth users': not working .... shou ld it?
ENVIRONMENT: RSync client: Sun Solaris 8 running 'rsync' version 2.4.6 RSync server: Windows-2000 running 'rsync' version 2.6.0 (cwRsync) I'm trying RSYNC files from the Sun server to a Windows 200 server (Why Unix-->Windows? Because the Windows box has gobs of unused disk space and the Unix box is strapped for it) and am having problems with
2017 Jun 18
2
Incluir versión
Estimado Freddy: Gracias por tu pronta respuesta; se trata de poner la versión de la tabla, y de esa manera distinguir el número de edición. Nuevamente muchas gracias. *MANOLO MÁRQUEZ P.* [[alternative HTML version deleted]]
2012 Nov 01
3
Duda gráfico DIN A-4
Hola, ¿Alguien me puede indicar cómo conseguir que un gráfico se adapte al formato DIN-A4, con su correspondiente verticalidad?. ¿Hay que hacerlo "manualmente" o existe algún parámetro/función que lo controle?. Gracias. Eva [[alternative HTML version deleted]]
2011 Feb 14
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
One more screen shot: The version I just checked now allows you to see all of the children of a given compile unit: [image: llbrowse3.png] I've already found at least one bug in my compiler's frontend using this tool :) Oh, and before I forget, I need three small changes to DebugInfo.h: - DebugInfoFinder's 'module' parameter should be const. - isArtificial should
2002 Sep 04
3
strange things with eval and parent frames
Dear mailing list, I have found some strange behaviour which I think relates to parent frames and eval. Can anyone explain what's going on here? First example: > test.parent.funcs_ function() { outer.var_ 5 subfunc1_ function() substitute( outer.var, envir=parent.frame()) print( subfunc1()) subfunc2b_ function() eval( quote( outer.var), envir=parent.frame()) print(
2006 Sep 21
2
delete a entire vector of a dataframe
delete a entire vector of a dataframe Hello, i want to delete a vector and tried "rm (t.d$V712)". This did not work, message was, could not find variable. I thought the $ defines the vectro in a dataframe, when I just type "t.d$V712" the content of this vector is displayed. Greetings, Thomas
2013 Feb 13
4
Equivalente a paper="a4", pero en pantalla gráfica
Buenas tardes: Quería lograr el efecto "expansivo" que se consigue con la opción paper="a4" de la función pdf, pero sin volcar en pdf; es decir, yo quiero enviar mi gráfico (luego definiré sus propiedades) a la salida gráfica (RGui) de modo que quede con verticalidad, como en un A4, y luego el usuario final es libre de guardar en pdf o no, con el propio RGui. Ahora voy a
2011 Feb 12
2
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
On Sat, Feb 12, 2011 at 6:40 AM, Garrison Venn <gvenn.cfe.dev at gmail.com>wrote: > Looks cool Talin. > > Personally it would be nice if it was checked into llvm.org, but is > wxWidgets LGPL like license > an issue for llvm's repository? > There should be no problem with the license. wxWidgets is indeed distributed under a modified version of the LGPL (with a special
2012 Apr 04
6
Fwd: Emplo de uso de knitr
Hola, reenvío un ejemplo de uso de knitr por si alguien quiere echarle un vistazo rápido. Saludos, Javier ----- Hola Por si es de tu interés te envio un documento del uso de knitr (tejiendo con R) que, me parece, supera con creces a Sweave. Para compilar el documento, que se llama eje.Rnw debe utilizarse: Rscript -e "library(knitr); knit2pdf('eje.Rnw')" Se puede ulizar
2006 Jan 20
0
Realtime - reading values from registred family name
For those strugling as me for the long time with question: "how the hack i can read a value from registred family name using realtime?" and not to use dbodbc or odbcexec , here's the sollution: RealTime(<family>|<colmatch>|<value>[|<prefix>]) All unique column names will be set as channel variables with optional prefix to the name. e.g. prefix of
2006 Dec 18
1
RE: Best way to access MySQL data from dial plan
> > > > What is a better way to do it then in terms of performance, security, > and > > flexibility? Using exec and a shell script, or agi or something else? > > Setup extconfig to have realtime access to the database/table you want to pull info from, then in the dialplan use the app Realtime. -= Info about application 'RealTime' =- [Synopsis] Realtime
2007 Feb 08
2
How to protect two jobs running on the same directory at the same time not to corrupt each other results:
Hi, I have a large group of jobs, some of them are running on the same directory. All of them in batch mode. What are the best ways to protect from corrupting the results two or more jobs running on the same directory. One, I would think can be to run each job in a separate directory, collect the results and after remove the directories. But I have thousands of jobs that will run in parallel