Displaying 18 results from an estimated 18 matches for "var_e".
Did you mean:
var_t
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,
2012 Nov 30
2
Nombres de variables variables
Hola,
¿Como estas?, la siguiente tal vez sea una pregunta simple.
Quiero crear nombres de variables pero que el nombre lleve el valor de un
objeto. Ej:
tengo estos dos valores
x1<-10
x2<-20
Quiero crear las variables:
var_10 <-
var_20 <-
Pero usando los objetos x1 y x2 como referencia.
Solo como referencia, en stata esto lo hacia de la siguiente forma
local x1 = 10
local x2 =
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
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
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
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
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
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
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
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(
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
2010 Dec 13
7
descriptive statistics
Hi. In a data set I have a variable that takes values from 1 to 14. For each
subgroup of values of this variable, I would like to obtain some descriptive
statistics of other variables present in the data set. I've been trying with
a "for" loop but I couldn't get nothing. Could you please suggest me some
lines?
--
View this message in context:
2013 Apr 07
0
Fitting distributions to financial data using volatility model to estimate VaR
Ok,
I try it again with plain text, with a simple R code example and just
sending it to the r list and you move it to sig finance if it is
necessary.
I try to be as detailed as possible.
I want to fit a distribution to my financial data using a volatility
model to estimate the VaR. So in case of a normal distribution, this
would be very easy, I assume the returns to follow a normal
distribution
1999 Oct 08
4
Automounting
Is there a way to make samba automatically mount a home directory?
That is, a user logging in (from Linux), enters its username and
password(Samba), and the system automatically mounts the user's home
directory from the samba server(without asking the password again).
Has anyone ever tried to do this? And succedeed :-) ?
--
nneves@di.fc.ul.pt Dept. Informatica, Fac.