Displaying 20 results from an estimated 78 matches for "newi".
Did you mean:
new
2006 Jul 29
1
fancier plotting
Hi
thank you for talking the time to help me with this.
I have a sequence of numbers in a file and an equal sequence of various character, say(a b c d) each occurs more than once. I need to plot the numbers so that numbers corresponding to a in the other sequence would have green dots, those corresponding to b a red dot, nothing on c and blue square for d. i.e
2 a show a green dot
4 b show a
2007 Oct 01
4
Disentagling formulas
I am writing a program in which I would like to take in a formula, change the response (Y) variable into something else, and then pass the formula, with the new Y variable to another function. That is, I am starting with
formula <- Y~X1+X2+X3
and I'd like to do something like
Y <- formula$Y
newY <- f(Y)
lm(newY~X1+X2+X3)
So far, it seems that my
2004 Oct 25
1
Ref: Variable scope or function behaviour or array reassign
Dear R- helpers
Following a draft structure of the R script for which I am facing problem
Step 1
x <- of type array with original values
y <- of type array with original values
Step 2
for (ctr in 1:10) {
# my problem here the both x and y still show the original values from step 1
# in spite of making changes to the old values of the arrays x and y in the function
function
2009 Mar 21
2
limiting simulated animal movement
Hi,
I am trying to simulate animal movement in a gridded landscape made up of
cells. At each time step (iteration), the animal moves from one cell to
another in a random fashion.
This is how I am simulating movement, where a and b are the x,y co-ordinates
of the animal at the previous time step:
for (i in 1:no.of.steps){
direction <- sample(1:8, 1)
if(direction == 1){
a <- a
b <- b -
2002 Mar 01
0
Newies Q: Getting Started With Wine On Red Hat 7.2
On Thursday 28 February 2002 15:44, you wrote:
> From: stevesusenet@hotmail.com (Steve)
> Subject: Newies Q: ?Getting Started With Wine On Red Hat 7.2
> Date: 28 Feb 2002 07:58:05 -0800
> Organization: http://groups.google.com/
> To: wine-users@winehq.com
> Reply-To: wine-users@winehq.com
>
> Hi;
>
> I'm running Red Hat 7.2 on a lap top that was given to me already set
>...
2005 Jun 10
1
Newie Questions
Hello, I'm new to asterisk. My company is opening a new office and I'm
seriously considering using Asterisk for the phone system.
A couple of questions:
How does Asterisk compete with the Avaya IP Office or the Nortel BCM
systems?
I have purchased a Polycom 500 phone but I'm having trouble getting it
setup and talking to Asterisk. Is there somewhere that has SIP phone
setup
2008 Jan 04
1
Plotting labeled impulses: label collision
Dear all,
As you can see from the attachment I'm using R to automatically annotate
peptide fragmentation mass spectra, which are represented by impulse plots.
I'd like to poll you on approaches of how to deal as generally as possible
with the two biggest annotation issues I run into:
1) very close annotated masses (impulses) with similar y-axis dimensions -
resulting in overlapping labels
2006 Apr 17
0
autoscall the y-axis
Dear R users
I need to auto scale the left y axis in the code below, so that when
I scroll left or right the left y-axis scale changes to accumulate the
range of the displayed data with in the max hight of the y-axis.
also how can I make the crosshair horizontal since it is only
vertical in this code. this code with a kind help from
"Gregory (Greg) L. Snow Ph.D."
just
2009 May 05
4
[LLVMdev] A problem creating operands for a new IR instruction to the mailing list
...:
Builder.SetInsertPoint(LLVMBB, I);
// The following line looks to me like it would have a chance of loading either
// address 5, or else immediate value 5. Unfortunately, it does neither. It compiles
// but crashes at runtime, that the type of the operand is incompatible
Instruction *newI=Builder.CreateLoad(5,"");
// I also tested this, just to do a little sanity check. It also compiles then
// crashes, for the obvious reason that the operand is a register, but an address
// or an immediate value is expected.
//Instruction *newI=Builder.CreateLoad(I->getOperand...
2003 Jan 29
3
multinomial conditional logit models
A multinomial logit model can be specified as a conditional logit
model after restructuring the data. Doing so gives flexibility in
imposing restrictions on the dependent variable. One application is
to specify a loglinear model for square tables, e.g. quasi-symmetry
or quasi-independence, as a multinomial logit model with covariates.
Further details on this technique and examples with several
2009 Mar 15
0
Axes crossing at origin
Hi,
I'm having a bit of trouble with the axes in my plots. I don't like the way
R does not have them cross in the origin. Is there another plot/axis
function? i tried using abline as suggested by someone from this list, but
in my case this gives no satisfactory result, as the abline does sometimes
lie on top of the y axis and sometimes not, depending on how i scale the
image...
#bild16
2002 Feb 28
1
Newies Q: Getting Started With Wine On Red Hat 7.2
Hi;
I'm running Red Hat 7.2 on a lap top that was given to me already set
up.
It looks like wine was preinstalled with Red Hat 7.2.
When I run "wine" at a shell prompt I get the error message
=====================
wineserver: chdir /home/srussell/.wine : No such file or directory
=====================
I think I might need to run some sort of set up program.
I checked out the
2006 Sep 22
4
Creating Movies with R
Dear All,
I'd like to know if it is possible to create animations with R.
To be specific, I attach a code I am using for my research to plot
some analytical results in 3D using the lattice package. It is not
necessary to go through the code.
Simply, it plots some 3D density profiles at two different times
selected by the user.
I wonder if it is possible to use the data generated for different
2006 Sep 21
3
newie help needed
hi,
I am a system admin who has just set up R-2.3.1 in suse 9.1 (opteron)
for a previous windows user. Please forgive any obvious stupid questions :)
We are struggling with a number of things.
1. is there a gui interface ? How do we use it ? R --gui just gets us
to the command line.
2. how do we do unix commands like cd ?
3. can we define default directories - eg for data files ?
4.
2010 Aug 13
2
Unable to retrieve residual sum of squares from nls output
Colleagues,
I am using "nls" successfully (2.11.1, OS X) but I am having difficulties retrieving part of the output - residual sum of squares. I have assigned the output to FIT:
> > FIT
> Nonlinear regression model
> model: NEWY ~ PMESOR + PAMPLITUDE * cos(2 * pi * (NEWX - POFFSET)/PERIOD)
> data: parent.frame()
> PMESOR PAMPLITUDE POFFSET
>
2007 Oct 03
2
Shading area under density curves
Hello,
I have a question regarding shading regions under curves to display
95% confidence intervals. I generated bootstrap results for the slope
and intercept of a simple linear regression model using the following
code (borrowed from JJ Faraway 2005):
> attach(allposs.nine.d)
> x<-model.matrix(~log(d.dist,10))[,-1]
> bcoef<-matrix(0,1000,2)
> for(i in 1:1000){
+
2010 Aug 19
2
Can't read/write to _nonfi
Good afternoon,
Hope you all have a wonderful day. I am glad to be here. Hope you could
help me with the following errors that i have been trying to figure it all
out since last week.
I am using Splus from Insightful, and as i read, R and Splus are very
similar. So hope you could help me.
I have been continously received these error messages after i ran my small
program for couple of
2009 May 05
0
[LLVMdev] A problem creating operands for a new IR instruction to the mailing list
...I);
>
> // The following line looks to me like it would have a chance o! f loading
> either
> // address 5, or else immediate value 5. Unfortunately, it does neither. It
> compiles
> // but crashes at runtime, that the type of the operand is incompatible
> Instruction *newI=Builder.CreateLoad(5,"");
>
> // I also tested this, just to do a little sanity check. It also compiles
> then
> // crashes, for the obvious reason that the operand is a register, but an
> address
> // or an immediate value is expected.
> //Instruction *newI=B...
2003 Aug 01
1
shading in image()
Is there a way to make a shading interpolation on an image plot?
Something similar to matlab 'shading interp', I think it is called Gouraud
shading.
What I want is to make a image plot look nicer. with image() it looks very
facetted, and I would like to make it look smoother.
I've tried with interp.surface() in fields package but it (obviously) makes
nan values at the borders and
2003 Dec 09
1
How to append to a data.frame?
Hi,
I have a data.frame that I need to construct iteratively.
At the moment, I'm doing:
d<-data.frame(x=c(),y=c(),z=());
# {and, within some loop}
d<-rbind(d,data.frame(x=newx,y=newy,z=newz);
While this works, it is horribly verbose and probably not efficient, either.
My real data.frame has, of course, many more columns, which can be of
different modes.
I vaguely recall that