Displaying 16 results from an estimated 16 matches for "data10".
Did you mean:
data16
2010 Apr 30
1
gluster-volgen - syntax for mirroring/distributing across 6 nodes
...lustr-03:/mnt/data05 clustr-01:/mnt/data06
clustr-02:/mnt/data06 clustr-03:/mnt/data06 clustr-01:/mnt/data07
clustr-02:/mnt/data07 clustr-03:/mnt/data07 clustr-01:/mnt/data08
clustr-02:/mnt/data08 clustr-03:/mnt/data08 clustr-01:/mnt/data09
clustr-02:/mnt/data09 clustr-03:/mnt/data09 clustr-01:/mnt/data10
clustr-02:/mnt/data10 clustr-03:/mnt/data10 clustr-01:/mnt/data11
clustr-02:/mnt/data11 clustr-03:/mnt/data11 clustr-01:/mnt/data12
clustr-02:/mnt/data12 clustr-03:/mnt/data12 clustr-01:/mnt/data13
clustr-02:/mnt/data13 clustr-03:/mnt/data13 clustr-01:/mnt/data14
clustr-02:/mnt/data14 clustr-03:/mn...
2018 Nov 21
2
Promises Future en shiny no me funciona
....sleep(n)
print(n)
}
ui <- fluidPage(
actionButton("go","Show the data"),
textOutput("result0sec"),
textOutput("result10sec")
)
server <- function(input,output,session){
data0 <- eventReactive(input$go,{
heavyFunction(0)
})
data10 <- eventReactive(input$go,{
future(heavyFunction(10))
})
output$result0sec <- renderText({
data <- data0()
print(data)
})
output$result10sec <- renderText({
data <- data10()
data%...>%print()
})
}
shinyApp(ui,server)
[[alternative HTML versi...
2011 Jan 13
1
"Ghost" values after subsetting
...07 2010/05/08
126 278 297 135 285 286 275
2010/05/10 2010/05/11 2010/05/20 2010/05/21 2010/06/02 2010/07/20 2010/08/12
290 22 259 291 381 20 648
2010/08/16 2010/08/18
11 2
> data10<-subset(data, data$Year==2010 & data$Recatpure1==1)
> table(data10$Dags)
2008/04/12 2008/04/13 2008/04/16 2008/04/17 2008/04/19 2008/05/06
0 0 0 0 0 0 0
2008/05/07 2008/05/12 2008/05/15 2008/05/25 2008/05/28 200...
2012 May 28
1
Why R order files as 1 10 100 not 1 2 3 ?
The code given below worked well. However, the problem is that when I typed
dir1 to see the results I found that R order the files as:
[1] "data1.flt" "data10.flt" "data100.flt" "data101.flt"
[5] "data102.flt" "data103.flt" "data104.flt" "data105.flt"
[9] "data106.flt" "data107.flt" "data108.flt" "data109.flt"
[13] "data11.flt" "...
2018 Mar 28
0
coxme in R underestimates variance of random effect, when random effect is on observation level
...tor(data2$id)
fit.cox2<-coxme(Surv(time,status) ~ x1 + x2 + x3 + (1 | id), data=data2)
sd.2[i]<-sqrt(as.numeric(fit.cox2$vcoef))
print(i)
}
print("model 2 done")
### Same as previous example, but patients are grouped
sd.10<-rep(0,50)
for (i in 1:50){
data10<-simulWeib.group(25000,lambda=0.0001,rho=2,beta1=0.33,beta2=5,beta3=0.25,beta4=0,rateC=0.0000000001, sigma = 0.25, M=40)
data10$group<-as.factor(data10$group)
fit.cox10<-coxme(Surv(time,status) ~ x1 + x2 + x3 + (1 | group), data=data10)
sd.10[i]<-sqrt(as.numeric(fit.cox10$vc...
2012 Aug 08
1
dimnames in array
...2:3]
data11<-array(0,c(41,2,2))
m8<-cbind(.29,1:41)
m9<-as.array(m8,dim=c(41,2))
data11[,1,] = y+m9
data11[,2,] = y+m9
rownames(data2, do.NULL = FALSE, prefix="row")
varnames=c("V","R")
colnames(data6)=c("one","two")
colnames(data10)=colnames(data6)
dimnames(data11)=list(rownames(data2),varnames,colnames(data10))
data11a<-as.array(data11,dimnames=dimnames(data11))
attributes(data11a)
#so this seems to print out the array attributes as they
should be: two sets of two columns each, and the first column of
each set is call...
2009 Dec 07
2
How to apply five lines of code to ten dataframes?
Hello R-helpers,
I have 10 dataframes (named data1, data2, ... data10) and I would like to
add 5 new columns to each dataframe using the following code:
data1$LogDepth<-log10(data1[,2]/data1[,4])
data1$LogArea<-log10(data1[,3]/data1[,5])
data1$p<-2*data1[,6]/data1[,7]
data1$Exp<-data1[,2]^(2/data1[,8])
data1$s<-data1[,3]/data1[,9]
...but I would pref...
2008 Sep 03
1
Read from many files into many object
Dear all,
I am new in R. I want to read data which is vector from many files and
import to many object.
For example I have 10(ten) files.
file1.txt
file2.txt
:
:
file10.txt.
I want to import each file into one object as follows.
data1
data2
:
:
data10
I want to import file1.txt into data1, file2.txt into data2, and so on.
How to do it quickly?
Thanks in advance.
Sigit B. Wibowo
2009 Feb 02
0
Using Information from the Stats4 package in base envir
...onse into single vector for k-means
x12 = rep(x1,nummod); #Put explanatory into a single vector
data1 = data.frame(resp1, x12) #Data frame for kmeans
cluster1 = kmeans(data1, 2, nstart=25)$cluster #Obtain cluster labels
data1 = data.frame(data1 ,cluster1)#Cluster labels in third column
data10 = subset(data1, cluster1==1)
data11 = subset(data1, cluster1==2)
model10 = lm(resp1 ~ x12, data10)#It works using the subset data frame
model1 = lm(resp1 ~ x12, cluster1 == 1, data1); #Gives the following error
Error in eval(expr, envir, enclos) : invalid 'envir' argument
2017 Dec 11
1
file creating
I am using R(3.4.3), Win 7(extreme edition) 32 bit,
I have 10 excel files data1,xls, data2.xls .. till data10.xls.
I want to create 10 dataframes . How to do ?
regards
Parth
[[alternative HTML version deleted]]
2006 Sep 13
2
recursive methods for concatenating sets of files
...ead.delim("t (6).txt", quote="", as.is=TRUE)
data7 <-read.delim("t (7).txt", quote="", as.is=TRUE)
data8 <-read.delim("t (8).txt", quote="", as.is=TRUE)
data9 <-read.delim("t (9).txt", quote="", as.is=TRUE)
data10 <-read.delim("t (10).txt", quote="", as.is=TRUE)
data11 <-read.delim("t (11).txt", quote="", as.is=TRUE)
data12 <-read.delim("t (12).txt", quote="", as.is=TRUE)
data13 <-read.delim("t (13).txt", quote="",...
2013 Jun 26
2
Re: snapshot-create-as for a single disk not all disks
...napshot.xml as folllows:
> <domainsnapshot>
> <name>snapshot01</name>
> <description>Snapshot of OS install and updates</description>
> <disks>
> <disk name='vda' snapshot='external'>
> <source file='/data10/snapshot'/>
> </disk>
> </disks>
> </domainsnapshot>
>
> How can I use the API or could I use "snapshot-create" ?
> I try "virsh snapshot-create domain_name snapshot.xml", but I report an
> error: error: unsupported configu...
2013 Jun 25
2
Re: snapshot-create-as for a single disk not all disks
Thanks for you reply!
Firstly, I'm very sorry I forgot introduce the scenarios in my experiments. Supposing a case, I have a virtual machine with two disks. One is mounted as a root partition and the other is data partition and the second disk is an iscsi lun, that is to say, not a local disk or image. Now the result wanted is that creating a snapshot for the root disk but not for the data
2013 Jun 25
0
Re: snapshot-create-as for a single disk not all disks
...the xml configuration file - snapshot.xml as folllows:
<domainsnapshot>
<name>snapshot01</name>
<description>Snapshot of OS install and updates</description>
<disks>
<disk name='vda' snapshot='external'>
<source file='/data10/snapshot'/>
</disk>
</disks>
</domainsnapshot>
How can I use the API or could I use "snapshot-create" ?
I try "virsh snapshot-create domain_name snapshot.xml", but I report an error: error: unsupported configuration: disk 'vda' must us...
2013 Jun 26
0
Re: snapshot-create-as for a single disk not all disks
...the xml configuration file - snapshot.xml as folllows:
<domainsnapshot>
<name>snapshot01</name>
<description>Snapshot of OS install and updates</description>
<disks>
<disk name='vda' snapshot='external'>
<source file='/data10/snapshot'/>
</disk>
</disks>
</domainsnapshot>
How can I use the API or could I use "snapshot-create" ?
I try "virsh snapshot-create domain_name snapshot.xml", but I report an error: error: unsupported configuration: disk 'vda' must us...
2010 May 04
1
Posix warning : Access to ... is crossing device
...export.vol)
# Cmd line:
# $ /usr/local/bin/glusterfs-volgen --name store-0405 --raid 1
clustr-04:/mnt/data01 clustr-04:/mnt/data02 clustr-04:/mnt/data03
clustr-04:/mnt/data04 clustr-04:/mnt/data05 clustr-04:/mnt/data06
clustr-04:/mnt/data07 clustr-04:/mnt/data08 clustr-04:/mnt/data09
clustr-04:/mnt/data10 clustr-04:/mnt/data11 clustr-04:/mnt/data12
clustr-04:/mnt/data13 clustr-04:/mnt/data14 clustr-04:/mnt/data15
clustr-04:/mnt/data16 clustr-04:/mnt/data17 clustr-04:/mnt/data18
clustr-04:/mnt/data19 clustr-04:/mnt/data20 clustr-04:/mnt/data21
clustr-04:/mnt/data22 clustr-04:/mnt/data23 clustr-04:/mn...