Displaying 20 results from an estimated 1254 matches for "sn".
Did you mean:
sun
2005 Mar 16
2
how to draw xyplot figure like figure 4.18 of MASS (4th) ?
Dear All:
Could you please tell me how I can draw figure formatted like figure 4.18 of MASS (4th) with the attached data set?
Thanks
Zhongming Yang
---------------------------------
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: sample.txt
Url: https://stat.ethz.ch/pipermail/r-help/attachments/20050316/abfdb85e/sample.txt
2009 Feb 23
1
Follow-up to Reply: Overdispersion with binomial distribution
...Median 3Q Max
-9.940 -2.778 -0.710 2.130 10.479
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) 1.63942 0.07205 22.753 < 2e-16 ***
Pred1F -0.65228 0.11781 -5.537 3.08e-08 ***
Pred1O -3.03239 0.12782 -23.724 < 2e-16 ***
Pred1SN -3.60714 0.11057 -32.623 < 2e-16 ***
Pred1W -1.22131 0.10734 -11.378 < 2e-16 ***
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
(Dispersion parameter for binomial family taken to be 1)
Null deviance: 3506.7 on...
2002 Feb 14
1
rsync default handling of permissions
The handling of permissions in rsync (2.5.2) is nasty or
broken.
(tested platforms: Linux 2.4.x and Solaris 7)
We have a directory which should only accessible to a
group of users (test) :
[sn@noname test]$ ls -lda /home/test
drwxrws--- 2 root test 4096 Feb 13 15:44 /home/test
Every user has an umask of 007 and his/her own default group:
[sn@noname sn]$ id
uid=500(sn) gid=500(sn) groups=500(sn),5001(test)
Files and directory are created in the right way:
[sn@noname tes...
2017 Sep 27
2
after hard reboot, split-brain happened, but nothing showed in gluster voluem heal info command !
...s in split-brain, however its parent directory or anything could be shown in command ?gluster volume heal <volume-name> info?, also, no entry in .glusterfs/indices/xattrop directory, can you help to shed some lights on this issue? Thanks!
Following is some info from our env,
Checking from sn-0 cliet, nothing is shown in-split-brain!
[root at sn-0:/mnt/bricks/services/brick/netserv/ethip]
# gluster v heal services info
Brick sn-0:/mnt/bricks/services/brick/
Number of entries: 0
Brick sn-1:/mnt/bricks/services/brick/
Number of entries: 0
[root at sn-0:/mnt/bricks/services/brick/netser...
2017 Sep 28
0
after hard reboot, split-brain happened, but nothing showed in gluster voluem heal info command !
...directory or anything could be shown in command ?gluster volume heal
> <volume-name> info?, also, no entry in .glusterfs/indices/xattrop
> directory, can you help to shed some lights on this issue? Thanks!
>
>
>
> Following is some info from our env,
>
> *Checking from sn-0 cliet, nothing is shown in-split-brain!*
>
> [root at sn-0:/mnt/bricks/services/brick/netserv/ethip]
> # gluster v heal services info
> Brick sn-0:/mnt/bricks/services/brick/
> Number of entries: 0
>
> Brick sn-1:/mnt/bricks/services/brick/
> Number of entries: 0
>
>...
2009 Aug 30
3
Computer Modern Fonts in R graphic
...as described here: http://www.stat.auckland.ac.nz/~paul/R/CM/CMR.html
but unfortunately, it does not work.
First of all I downloaded the cm-lgc package and the AFM and PFB-files
from the page and put them in my R working directory, so far, so good.
Then I tried to run the following code:
> sn <- seq(1,7,length=100)
> sm <- seq(0,4,length=100)
> f <- function(x,y) {5.64080973 + 0.12271038*x - 0.27725481 * y + 0.29281216*x*y}
> z <- outer(sn,sm,f)
>
> nrz <- nrow(z)
> ncz <- ncol(z)
> jet.colors <- colorRampPalette( c("yellow", "re...
2017 Sep 28
2
after hard reboot, split-brain happened, but nothing showed in gluster voluem heal info command !
...s in split-brain, however its parent directory or anything could be shown in command ?gluster volume heal <volume-name> info?, also, no entry in .glusterfs/indices/xattrop directory, can you help to shed some lights on this issue? Thanks!
Following is some info from our env,
Checking from sn-0 cliet, nothing is shown in-split-brain!
[root at sn-0:/mnt/bricks/services/brick/netserv/ethip]
# gluster v heal services info
Brick sn-0:/mnt/bricks/services/brick/
Number of entries: 0
Brick sn-1:/mnt/bricks/services/brick/
Number of entries: 0
[root at sn-0:/mnt/bricks/services/brick/netser...
2017 Sep 28
0
after hard reboot, split-brain happened, but nothing showed in gluster voluem heal info command !
...shown in command ?gluster volume heal
> <volume-name> info?, also, no entry in .glusterfs/indices/xattrop
> directory, can you help to shed some lights on this issue? Thanks!
>
>
>
>
>
>
>
> Following is some info from our env,
>
>
>
> *Checking from sn-0 cliet, nothing is shown in-split-brain!*
>
>
>
> [root at sn-0:/mnt/bricks/services/brick/netserv/ethip]
>
> # gluster v heal services info
>
> Brick sn-0:/mnt/bricks/services/brick/
>
> Number of entries: 0
>
>
>
> Brick sn-1:/mnt/bricks/services/brick/...
2011 Jun 22
1
Appending to list
So im here now b/c im incredibly frustrated. Please consider the following:
#Try 1
Data_<-list()
Sn<-1:12
for(sn in Sn){
for(i in 1:10){
Data.X <- rnorm(100,0,10)
Data_[[paste(sn,i,sep="-")]]<-Data.X
}
}
##Try 2
Data_<-list()
Sn<-1:12
for(sn in Sn){
for(i in 1:10){
Data.X <- rnorm(100,0,10)
Data_[[sn]][[i]]<-Data.X
}
}
In Try 1 i am able to append sepa...
2017 Sep 28
1
after hard reboot, split-brain happened, but nothing showed in gluster voluem heal info command !
...s in split-brain, however its parent directory or anything could be shown in command ?gluster volume heal <volume-name> info?, also, no entry in .glusterfs/indices/xattrop directory, can you help to shed some lights on this issue? Thanks!
Following is some info from our env,
Checking from sn-0 cliet, nothing is shown in-split-brain!
[root at sn-0:/mnt/bricks/services/brick/netserv/ethip]
# gluster v heal services info
Brick sn-0:/mnt/bricks/services/brick/
Number of entries: 0
Brick sn-1:/mnt/bricks/services/brick/
Number of entries: 0
[root at sn-0:/mnt/bricks/services/brick/netser...
2006 Oct 31
2
plotting multiple groups (newbie Q)
...0.624583
7 3.0 N -12.47671250 11.104792
10 4.0 N -13.72430950 12.000779
13 6.0 N -20.33209750 11.393002
16 8.0 N -26.09158500 6.851262
19 12.5 N -25.17146000 5.480260
22 14.0 N -26.11350500 6.012569
25 16.0 N -25.77838600 6.186600
2 1.0 SN -4.89147932 14.141263
5 2.0 SN -13.11899886 11.457917
8 3.0 SN -20.30688429 8.037245
11 4.0 SN -27.95203107 7.337336
14 6.0 SN -23.29571750 9.499774
17 8.0 SN -25.60317143 7.292301
20 12.5 SN -29.48492857 8.008832
23 14.0 SN -25.12681071 5....
2017 Sep 28
0
after hard reboot, split-brain happened, but nothing showed in gluster voluem heal info command !
...shown in command ?gluster volume heal
> <volume-name> info?, also, no entry in .glusterfs/indices/xattrop
> directory, can you help to shed some lights on this issue? Thanks!
>
>
>
>
>
>
>
> Following is some info from our env,
>
>
>
> *Checking from sn-0 cliet, nothing is shown in-split-brain!*
>
>
>
> [root at sn-0:/mnt/bricks/services/brick/netserv/ethip]
>
> # gluster v heal services info
>
> Brick sn-0:/mnt/bricks/services/brick/
>
> Number of entries: 0
>
>
>
> Brick sn-1:/mnt/bricks/services/brick/...
2019 May 15
1
domain still running although snapshot-file is deleted !?!
Hi,
i have a strange situation:
A domain is still running where domblklist points to a snapshot file and also dumpxml says the current drive is that snapshot file.
But the file has been deleted hours ago. And the domain is still running. I can login via ssh, the database and the webserver are still running,
domain is performant.
How can that be ?
Also lsof shows that the file is deleted...
2006 Apr 19
1
Probable Numeric Bugs in svd function (PR#8781)
...D=3D2)=0D
sigmas<-c(13.71,162.71,8.78,103.83,5.29,77.08,3.42,41.04)=0D
temp1<-sigmas[1]*usLow+sigmas[2]*usHigh+sigmas[5]*euLow+sigmas[6]*euHigh=0D
temp10<-sigmas[3]*usLow+sigmas[4]*usHigh+sigmas[7]*euLow+sigmas[8]*euHig=0D
h=0D
CorrEU<-0.89=0D
CorrUS<-0.82=0D
=0D
CorrR<-matrix(0,2*SN.nb,2*SN.nb)=0D
diag(CorrR)<-c(temp1^2,temp10^2)=0D
=0D
temp<-ifelse(Region=3D=3D1,CorrUS,CorrEU)=0D
tempMat<-matrix(0,SN.nb,SN.nb)=0D
diag(tempMat)<-temp*temp1*temp10=0D
CorrR[(SN.nb+1):(2*SN.nb),1:SN.nb]<-tempMat=0D
CorrR[1:SN.nb,(SN.nb+1):(2*SN.nb)]<-tempMat=0D
=0D
CorrR is posi...
2009 Jun 01
1
Bug in hist() when working with Dates ?
Hi,
It seems that hist() has a buggy behavior when breaking over "days".
The bug can be reproduced in a few steps:
> d=data.frame(date=c("2009-01-01", "2009-01-02", "2009-01-02"))
> d$date=as.Date(d$date)
> d$date
[1] "2009-01-01" "2009-01-02" "2009-01-02"
> h=hist(d$date, "days")
> h$count
[1] 3
2020 Feb 07
2
does the guest have a snapshot ?
Hi,
i'm cuurently a bit confused if a guest does have a valid snapshot or not.
This is the xml:
...
<disk type='file' device='disk'>
<driver name='qemu' type='qcow2'/>
<source file='/var/lib/libvirt/images/crispor_1604/crispor_1604.sn'/>
<backingStore type='file' index=...
2010 Dec 07
3
understanding output of tapply/by cumsum
...a dataset with categories and numbers.
I would like to compute and add cumulative numbers
to the dataset.
I do not understand the structure of by(...) or
tapply(...) output enough to handle it.
Here a small example
--------------
d<-expand.grid(a=1:5,b=1:3,c=1:2)
d$n = 10 * d$a + d$b +0.1* d$c
Sn<-by(d$n,list(d$a,d$c),cumsum)
str(Sn)
---------
List of 10
$ : num [1:3] 11.1 23.2 36.3
$ : num [1:3] 21.1 43.2 66.3
$ : num [1:3] 31.1 63.2 96.3
$ : num [1:3] 41.1 83.2 126.3
$ : num [1:3] 51.1 103.2 156.3
$ : num [1:3] 11.2 23.4 36.6
$ : num [1:3] 21.2 43.4 66.6
$ : num [1:3...
2003 Sep 05
3
fit data with skew t distribution
Hi,
Is there a function in R that I can use to fit the data with skew t
distribution? Speaking in detail, I first used the kernel density estimation
to fit my data, then I drew the skew t using my specified location, scale,
shape, and df to make it close to the kernel density. Now I want to get the
parameter estimations of the skew t which give me the closet density to the
kernel density.
2010 Jun 02
1
lattice, xyplot, using "panel.segments" by just addressing one panel
...= TRUE, strip=FALSE,
panel=function(x,y){
panel.xyplot(x,y,pch=20,col="black", bg="transparent")
panel.fill(col = "transparent")
panel.segments(fx,fy,tx,ty[panel.number()])
})
Also tried to split the data and loop it (but this code might be a bit
messy. Apologies!) sn is the variable used to split according to panel. I
just tried to do the links for 2 panel here:
fx <- split(links$fx,links$sn)
fy <- split(links$fy,links$sn)
tx <- split(links$tx,links$sn)
ty <- split(links$ty,links$sn)
sn <- sn
dothese <- c(1,2)
ct <- 0
for (i in dothese){...
2016 Feb 19
6
Building a http query string including SMBIOS Serial Number to load a specific kernel
...s,
There is a way to get the system serial number from SMBIOS and pass it
as HTTP query string to get the kernel and initrd?
Something like this:
LABEL OS Download
MENU LABEL Clonezilla
MENU INDENT 1
KERNEL http://192.168.10.10/kernel.php?type=kernel (
http://myserver/kernel.php?SN=SMBIOS_SERIAL_NUMBER&type=kernel
)&SN=SMBIOS_SERIAL_NUMBER
APPEND
initrd=http://192.168.10.10/kernel.php?type=initrd&SN=SMBIOS_SERIAL_NUMBER
boot=live ...
I found that SYSAPPEND is able to get info from SMBIOS, but there is a
way to accomplish what I'm trying to do, i.e. repl...