Displaying 7 results from an estimated 7 matches for "mydas".
Did you mean:
zydas
2009 Aug 19
2
how to fill the area under the density line with semitransparent colors
Dear R-listers,
I have created a plot to display the density lines for the same
variable by different entities. Now, I want to fill the area under the
density lines with semitransparent colors.
Though I have checked that in web-searching and book-reading, I still
do not perform that.
Could anyone please give me any helps or advice? Thank you in advance.
The data and code I used listed below:
#
2009 Aug 19
2
Why are there small circles in my plot
Dear R-listers,
There is my data and my codes to create a plot. I want to know why
there are two small circles in the upper right and lower left of the
plot respectively. Could you please share your experience or advice
with me?
# dummy data
factor<-rep(c("Alice","Jone","Mike"),each=100)
factor<-factor(factor)
traits<-c(rnorm(100, mean=1, sd=1), rnorm(100,
2006 Apr 27
1
scope of variable/object ?
Hi,
I must be missing something here...Essentially, a short piece of code works if it's standalone, but doesn't work if it's divided into two functions.
The code that works is:
################### WORKS ###############
library(pamr)
set.seed(120)
x <- matrix(rnorm(1000*20),ncol=20)
y <- sample(c(1:4),size=20,replace=TRUE)
mydata <- list(x=x,y=y)
2006 Nov 27
2
Centos 4.3 32 bit -CIFS VFS: Send error in Close = -9
...ve all accounts execpt admin & newly created user &
assign full permissions to that share to newly created user(duser)
2) proc used to access shares via cifs
wget http://pserver.samba.org/samba/ftp/cifs-cvs/mount.cifs
mv mount.cifs /sbin/mount.cifs
chmod +x /sbin/mount.cifs
mount.cifs //MYDAS/Myshare1 /var/www/html/Myshare1 -o
username=duser,password=mydpass,rw
mount.cifs //MYDAS/Myshare2 /var/www/html/Myshare2 -o
username=duser,password=mydpass,rw
mount.cifs //MYDAS/Myshare3 /var/www/html/Myshare3 -o
username=duser,password=mydpass,rw
Note: MYDAS is pointed to the correct IP in /etc/...
2009 Aug 24
1
how to add 95% confidential interval as vertical lines to x axe in density plot
Dear R-help listers,
I want to add 95% confidential interval as vertical lines to x
axe in density plot. I have found the library(hdrcde) can do this
work, but I do not know
how to handle functions of this library when I used ggplot2 to draw the graph.
Thank you in advance.
The data and codes followed:
# dummy data
factor<-rep(c("Alice","Jone","Mike"),each=100)
2009 Aug 21
0
how to plot 95% confidential interval as vertical lines to x axe in density plot
Dear R-help listers,
Under the helps from the ggplot2 list, I have set up method of drawing
a graph with multiple density plots arranged one by one in one page.
Now, I want to add 95% confidential interval as vertical lines to x
axe in density plot. I have found the library(hdrcde) can do this
work, but I do not know
how to handle functions of this library when I used ggplot2 to draw the graph.
2012 Apr 17
3
error using nls with logistic derivative
Hi
I?m trying to fit a nonlinear model to a derivative of the logistic function
y = a/(1+exp((b-x)/c)) (this is the parametrization for the SSlogis function with nls)
The derivative calculated with D function is:
> logis<- expression(a/(1+exp((b-x)/c)))
> D(logis, "x")
a * (exp((b - x)/c) * (1/c))/(1 + exp((b - x)/c))^2
So I enter this expression in the nls function: