search for: att1

Displaying 20 results from an estimated 21 matches for "att1".

Did you mean: att
2007 Feb 22
4
Crosstabbing multiple response data
Using R version 2.4.1 (2006-12-18) on Windows, I have a dataset which resembles this: id att1 att2 att3 1 1 1 0 2 1 0 0 3 0 1 1 4 1 1 1 ratings <- data.frame(id = c(1,2,3,4), att1 = c(1,1,0,1), att2 = c(1,0,0,1), att3 = c(0,1,1,1)) I would like to get a cross tab of counts of co-ocurrence, which might resemble th...
2007 Sep 20
3
Ambiguities in vector
Hello all you helpful people out there! I am stil R Beginner using R 2.5.1 on a Apple Power Book G4 with Mac OS X 10.4.10 . Perhaps you haven?t understood my question in the mail yesterday. So I will try to describe my problem in a different way You see the tables. I would like to test the variables between the tables. But for some variables in some species , I have more than 1
2018 Mar 21
2
how to add a child to a child in XML
I am trying to add a child to a child using XML package in R. the following fails library(XML) node1 <- c("val1","val2","val3") names(node1) <- c("att1","att2","att3") root <- xmlNode("root", attrs=node1) node2 <- LETTERS[1:3] names(node2) <- paste("name",1:3,sep="") root <- addChildren(root,xmlNode("child1",attrs=node2)) node3 <- letters[1:3] names(node3) <-...
2013 Jan 31
5
Modify objects in function
...rger S4 project for a package, and I arrived at a point where I have to think a little harder on implementation style (especially to spare users complex object handling). I have a function foo(), taking as input arguments two S4 objects of different class type foo <- function(o1, o2) { o1 at att1 <- producesomething() o2 at att2 <- producesomethingelse() } Of course, this functions does not change the objects in the global environment. Now I have two choices 1. Change the objects and return a list with both objects: foo <- function(o1, o2) { o1 at att1 <- producesometh...
2018 Mar 21
0
how to add a child to a child in XML
...t;C"/> On the other hand, you might consider using newXMLNode() instead of xmlNode() as it accepts a "parent = " argument. The alternative using newXMLNode() would look like... atts_root <- c("val1","val2","val3") names(atts_root) <- c("att1","att2","att3") root <- newXMLNode("root", attrs = atts_root) atts_child <- LETTERS[1:3] names(atts_child) <- paste("name",1:3,sep="") child <- newXMLNode("child",attrs = atts_child, parent = root) atts_grandchild <-...
2018 Mar 22
2
how to add a child to a child in XML
...t;C"/> On the other hand, you might consider using newXMLNode() instead of xmlNode() as it accepts a "parent = " argument. The alternative using newXMLNode() would look like... atts_root <- c("val1","val2","val3") names(atts_root) <- c("att1","att2","att3") root <- newXMLNode("root", attrs = atts_root) atts_child <- LETTERS[1:3] names(atts_child) <- paste("name",1:3,sep="") child <- newXMLNode("child",attrs = atts_child, parent = root) atts_grandchild <-...
2018 Mar 22
0
how to add a child to a child in XML
...On the other hand, you might consider using newXMLNode() instead of xmlNode() as it accepts a "parent = " argument. The alternative using newXMLNode() would look like... > > atts_root <- c("val1","val2","val3") > names(atts_root) <- c("att1","att2","att3") > root <- newXMLNode("root", attrs = atts_root) > > atts_child <- LETTERS[1:3] > names(atts_child) <- paste("name",1:3,sep="") > child <- newXMLNode("child",attrs = atts_child, parent = roo...
2015 Feb 24
2
[LLVMdev] [RFC] Storing default function attributes on the module
...icating whether or not they're > overridable (i.e., they're overridable if they're target > defaults; they're not overridable if they've been explicitly > specified somehow). > > Here's some straw-man syntax: > > attributes #0 = { noreturn ssp? "att1"="1" "att2"="2"? } > > Where: > > - `noreturn` and `"att1"="1"` are required. > - `ssp` and `"att2"="2"` can be overridden (e.g., by `llc`). > > (Alternately, but equivalently: > > attribut...
2018 Mar 22
1
how to add a child to a child in XML
...t;C"/> On the other hand, you might consider using newXMLNode() instead of xmlNode() as it accepts a "parent = " argument. The alternative using newXMLNode() would look like... atts_root <- c("val1","val2","val3") names(atts_root) <- c("att1","att2","att3") root <- newXMLNode("root", attrs = atts_root) atts_child <- LETTERS[1:3] names(atts_child) <- paste("name",1:3,sep="") child <- newXMLNode("child",attrs = atts_child, parent = root) atts_grandchild <-...
2015 Feb 24
2
[LLVMdev] [RFC] Storing default function attributes on the module
Hi Duncan, Been thinking about this a bit and a few comments/questions. I may have misunderstood some things in your mail though so please feel free to explain at me :) > Changing `clang` to store target defaults on the module will allow us to > continue to override them when running `llc`. The right precedence > would be: > > 1. Explicit attributes set on the function. >
2015 Feb 26
1
[LLVMdev] [RFC] Storing default function attributes on the module
...#39;re >> overridable (i.e., they're overridable if they're target >> defaults; they're not overridable if they've been explicitly >> specified somehow). >> >> Here's some straw-man syntax: >> >> attributes #0 = { noreturn ssp? "att1"="1" "att2"="2"? } >> >> Where: >> >> - `noreturn` and `"att1"="1"` are required. >> - `ssp` and `"att2"="2"` can be overridden (e.g., by `llc`). >> >> (Alternately, but equivale...
2015 Mar 10
2
[LLVMdev] [RFC] Storing default function attributes on the module
...39;re >> overridable (i.e., they're overridable if they're target >> defaults; they're not overridable if they've been explicitly >> specified somehow). >> >> Here's some straw-man syntax: >> >> attributes #0 = { noreturn ssp? "att1"="1" "att2"="2"? } >> >> Where: >> >> - `noreturn` and `"att1"="1"` are required. >> - `ssp` and `"att2"="2"` can be overridden (e.g., by `llc`). >> >> (Alternately, but equival...
2001 Feb 12
4
Performance VPN over the internet
Hi 'tinc users' I'm new whit tinc and this mail-list. I like to build a vpn over the internet between two sites in Holland and Germany. Are there some experience whit the performance (turn-a-round en bandwidth) of a link. I want to use it for a 1,5Mb connection. Greetings, Fred Krom. - Tinc: Discussion list about the tinc VPN daemon Archive:
2011 Apr 25
3
where is xen_blkback xen_netback.ko source code?
where is the source code of xen_blkback.ko xen_netback.ko? thanks _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2000 Jun 25
2
Easy way?
Hi, Say I have this vector x <- sort(rnorm(n)). I'd like to know if there is a nice way to find out the index of the nearest x to say 1.5? Thanks YG -------------- next part -------------- An HTML attachment was scrubbed... URL: https://stat.ethz.ch/pipermail/r-help/attachments/20000625/be875885/attachment.html
2011 Apr 21
3
Acoustic echo cancellation
Simply to say, in a quiet room, you can play a impulse signal and then find it's impulse response signal from the microphone. For example, if the delay between the impulse signal and its response signal range from 500 to 3000 cycles, you can buffer the far-end signal to 0-300 cycles and set the filter length to 4000. It is also called to align far-end signal and near-end signal. BTW: Speex
2000 Jul 03
1
Antwort: Re: sshd does not exit after scp (hpux 11.00 / ssh 2.1 .1p1)
...s complete. Another issue is we get this message from sshd when logging out: May 23 13:22:16 robinson sshd[14075]: Cannot delete credentials: Permission denied So pam_setcred(PAM_DELETE_CRED) isn't working. -------------- next part -------------- A non-text attachment was scrubbed... Name: att1.eml Type: application/octet-stream Size: 3401 bytes Desc: not available Url : http://lists.mindrot.org/pipermail/openssh-unix-dev/attachments/20000703/3ff8d57b/attachment.obj
2011 Apr 21
0
Acoustic echo cancellation
...'t want to modify the frame size. > >> >> > >> >>> > >> >> Thanks in advance, > >> >> Daniel. > > > > > ------------------------------ > ??????2G????????????????????3?!<http://mail.163.com/html/110414_attachment/att1.htm> > _______________________________________________ > Speex-dev mailing list > Speex-dev at xiph.org > http://lists.xiph.org/mailman/listinfo/speex-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/speex-d...
2011 Apr 19
1
Acoustic echo cancellation
>>>> Hi, >>> >>> I have a scenario in a mobile VoIP app that requires echo cancellation but >>> is somewhat different from what's described in the docs. >>> >>> Audio is received from and sent to the network at 8000Hz. Each packet >>> contains 160 samples worth a playback of 20ms. >>> >>> But the hardware
2001 Nov 08
3
Problem with optim (method L-BFGS-B)
Hello, I've just a little problem using the function optim. Here is the function I want to optimize : test_function(x){(exp(-0.06751 + 0.25473*((x[1]-350)/150) + 0.04455*((x[2]-40)/20) + 0.09399*((x[3]-400)/100) - 0.17238*((x[4]-250)/50)- 0.45984*((x[5]-550)/150)-0.39508*((x[1]-350)/150)* ((x[1]-350)/150) - 0.05116*((x[2]-40)/20)* ((x[2]-40)/20) - 0.27735*((x[3]-400)/100)*((x[3]-400)/100) -