Displaying 20 results from an estimated 400 matches similar to: "how to trigger variable creation?"
2009 Apr 07
3
write text file as output without quotes
Hi R,
When I use the below to write the text file
try=data.frame(rep("a",5), rep("b",5))
write.table(try,"z:\\try.txt",row.names=F,col.names=F,sep="\t")
the output contains two columns with quotes! Is there a way to write
without quotes?
I tried
try[,1]=noquote(try[,1])
try[,2]=noquote(try[,2])
Thank you,
Regards,
Ravi Shankar
2010 Feb 05
2
ifelse on a series of rows for multiple criteria
Dear all,
I am attempting to perform a calculation which counts the number of positive (or negative) values based on the sample mean (on a per-row basis). If the mean is>0 then only positive values should be counted, and if the mean is <0 then only negative values should be counted. In cases where the mean is equal to zero, the value -99999 should be returned.
The following is an example
2010 Jun 01
1
mvbutils and trackObjs
Hello Colleagues,
I've recently become a fan of Mark Bravington's mvbutils package for organizing analysis projects in a tree.
Using cd(), Save(), fixr(), mlazy() etcetera solves nicely some of the nuisances that have worried or annoyed me and sometimes caused
big problems over the years. Well thought out.
Now one feature that would be fabulous would be automatic time-stamping of
2007 Sep 10
0
new package 'trackObjs' - mirror objects to files, provide summaries & modification times
From ?trackObjs:
Overview of trackObjs package
Description:
The trackObjs package sets up a link between R objects in memory
and files on disk so that objects are automatically resaved to
files when they are changed. R objects in files are read in on
demand and do not consume memory prior to being referenced. The
trackObjs package also tracks times when objects
2007 Sep 10
0
new package 'trackObjs' - mirror objects to files, provide summaries & modification times
From ?trackObjs:
Overview of trackObjs package
Description:
The trackObjs package sets up a link between R objects in memory
and files on disk so that objects are automatically resaved to
files when they are changed. R objects in files are read in on
demand and do not consume memory prior to being referenced. The
trackObjs package also tracks times when objects
2003 Jun 07
4
SIP, NAT & Asterisk
Hi all,
--------
beacause I am a newbie in the asterisk ralm and the existing documentation
could not satisfy I'd like to ask you some Questions:
1. Does somewhere in the Internet exist additional documentations for asterisk
configuration ?
2. Does Asterisk work as a standard SIP Proxy ?
3. I am just installing a Asterisk PBX in our institute and additionally I
purchased some ot the Snom
2007 Nov 06
3
How to know created time of object in R?
Dear UseRs,
I would like to know the created time and date of specific object.
Is there any function for it?
Thank you in advance.
Sincerely,
2003 Oct 11
1
SIP / IAX over satellite
Hi all,
------
I tried to use * over satellite, but all my effort did not succeed.
The Asterisk is behind the VSAT and is resposibel for alle the SIP
clients in a field location.
The clients are notebooks and PDA's running SJPhoen for Windows and
PocketPC. Unfortunately
I could not find any Linux Client wich worked satisfying. SJ LAbs
promised a Linux Version at the end of
August but they
2007 Dec 23
0
new version of trackObjs
The trackObjs package stores objects in files on disk so that files are
automatically rewritten when objects are changed, and so
that objects are accessible but do not occupy memory until
they are accessed. Also tracks times when objects are created
and modified, and caches some basic characteristics of objects
to allow for fast summaries of objects.
This version trackObjs_0.8-0 fixes some bugs:
2018 Apr 18
3
Problem with regression line
Hello,
I am trying to graph a regression line using the followings:
Age <- c(39, 47, 45, 47, 65, 46, 67, 42, 67, 56, 64, 56, 59, 34, 42, 48, 45,
17, 20, 19, 36, 50, 39, 21, 44, 53, 63, 29, 25, 69)
BloodPressure <- c(144, 220, 138, 145, 162, 142, 170, 124, 158, 154, 162,
150, 140, 110, 128, 130, 135, 114, 116, 124, 136, 142, 120, 120, 160, 158,
144, 130, 125, 175)
SimpleLinearReg1=lm(Age ~
2007 Dec 14
2
Rapid Random Access
I have some code that can potentially produce a huge number of
large-ish R data frames, each of a different number of rows. All the
data frames together will be way too big to keep in R's memory, but
we'll assume a single one is manageable. It's just when there's a
million of them that the machine might start to burn up.
However I might, for example, want to compute some
2011 Feb 25
3
Link to xva.py broken
Hi,
any link[1] that I can find for "xva.py" did not seem to be working. where it has been moved?
regards
Andreas
[1]
http://www.xen.org/products/cloud_projects.html
http://www.xen.org/files/xva/README
--
Andreas Rieck
Fraunhofer-Gesellschaft e.V. / Zentrale
Abteilung C7 Kommunikationsmanagement
Schloss Birlinghoven, 53754 Sankt Augustin
Phone: (+49 2241) 14-2641
Fax: (+49 2241)
2010 Nov 04
5
Logical vectors
Hi folks,
Pls help me to understand follow;
An Introduction to R
2.4 Logical vectors
http://cran.r-project.org/doc/manuals/R-intro.html#R-and-statistics
1)
> x
[1] 1 2 3 4 5
> temp <- x != 1
> temp
[1] FALSE TRUE TRUE TRUE TRUE
>
2)
> x
[1] 1 2 3 4 5
> temp <- x > 1
> temp
[1] FALSE TRUE TRUE TRUE TRUE
Why NOT
> temp
[1] TRUE FALSE FALSE FALSE
2010 Nov 04
5
Logical vectors
Hi folks,
Pls help me to understand follow;
An Introduction to R
2.4 Logical vectors
http://cran.r-project.org/doc/manuals/R-intro.html#R-and-statistics
1)
> x
[1] 1 2 3 4 5
> temp <- x != 1
> temp
[1] FALSE TRUE TRUE TRUE TRUE
>
2)
> x
[1] 1 2 3 4 5
> temp <- x > 1
> temp
[1] FALSE TRUE TRUE TRUE TRUE
Why NOT
> temp
[1] TRUE FALSE FALSE FALSE
2018 Jan 17
0
effects & lme4: error since original data frame notfoundWASeffects: error when original data frame is missing
Dear Gerrit,
This issue is discussed in a vignette in the car package (both for functions in the car and effects packages): vignette("embedding", package="car") . The solution suggested there is the essentially the one that you used.
I hope this helps,
John
-----------------------------
John Fox, Professor Emeritus
McMaster University
Hamilton, Ontario, Canada
Web:
2018 Apr 18
0
Problem with regression line
Hi, Anne,
assign Age and Bloodpressure in the correct order
to the axes in your call to plot as in:
plot(y = Age, x = BloodPressure)
abline(SimpleLinearReg1)
Hth -- Gerrit
---------------------------------------------------------------------
Dr. Gerrit Eichner Mathematical Institute, Room 212
gerrit.eichner at math.uni-giessen.de Justus-Liebig-University Giessen
Tel:
2013 Feb 26
2
(no subject)
I've run into a problem with `doveadm backup` (2.2 rc2 and 20130226)
I did not notice in 2.1.15
doveadm backup [-Dv] -R -u cyrtest1 at iai.uni-bonn.de -m INBOX imapc:
=> crashes (signal 6 with acl plugin configured, sig 11 without acl)
If this is considered a bug (not just because of the crash but in the
meaning of "my configuration should work") it would be great if it could
be
2018 Jan 17
0
effects & lme4: error since original data frame not found WASeffects: error when original data frame is missing
Hi, again,
I have to modify my query since my first (too simple)
example doesn't reflect my actual problem. Second try:
When asking Effect() inside a function to compute an effect
of an lmer-fit which uses a data frame local to the body of
the function, as in the following example (simplifying my
actual application), I get the "Error in is.data.frame(data) :
object 'X' not
2003 Aug 26
0
TDM10M && Siemens Euroset 2015
Hi all,
--------
I have installed a TDM400 with one active FXS port (TDM10B) an connected
it to a Siemens Euroset 2015 analogue phone.
I have installed some smom IP phones to the network as well and
configured them as usual (sip.conf). For configuring the TDM10B I have
used FXO signalling in /etc/zaptel.conf and in
/etc/asterisk/zapata.conf. I definded the TDM channel and the Snom
phones to the
2018 Jan 17
4
effects: error when original data frame is missing
Hello, everyody,
when asking, e.g., Effect() to compute the effects of a fitted,
e.g., linear model after having deleted the data frame from the
workspace for which the model was obtained an error is reported:
> myair <- airquality
> fm <- lm(Ozone ~ Temp, data = myair)
> rm(myair)
> Effect("Temp", fm)
Error in eval(model$call$data, envir) : object 'myair'