search for: truc

Displaying 20 results from an estimated 27 matches for "truc".

Did you mean: tru
2006 Jun 15
2
Name of a column
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible Url : https://stat.ethz.ch/pipermail/r-help/attachments/20060615/8bdef5dc/attachment.pl
2006 Jan 12
2
tapply and weighted means
I' m trying to compute weighted mean on different groups but it only returns NA. If I use the following data.frame truc: x y w 1 1 1 1 2 2 1 3 1 1 4 2 0 2 1 0 3 2 0 4 1 0 5 1 where x is a factor, and then use the command : tapply(truc$y,list(truc$x),wtd.mean, weights=truc$w) I just get NA. What's the problem ? What can I do ?
2008 Aug 04
1
R and emacs
I wrote a "program" truc.r with emacs In emacs, I start the buffer R, then I eval the buffer truc.r (C-c C-b) All is correct and I have my results. But, when I return to Console R, and make: > source ("truc.r"), I obtain an error: Erreur dans source("truc.r") : invalid multibyte character in par...
2008 Aug 03
1
(sans objet)
- Peut-on poser des questions en fran?ais? - Tr?s simple. Je fais un programme "truc.r" (sous emacs) Ce programme r?alise des graphiques. Je voudrais les enregistrer au fur et ? mesure -- sinon, quand la session est finie, ces graphiques sont perdus-- J'ai essay?: pdf("truc.pdf") Mais le fichier "truc.pdf" cr?? est vide. Comment fait-on? Merci et sa...
2005 Oct 31
3
Applying a function to a vector
...eta distribution of the first kind). It works perfectly for a single value, but I want to apply it to a vector of 22 000 values. I can use a loop for the calculation of each value but it runs very very slowly. So, what can I change ? Hers's the function : p <- c(1,1) y <- 1 z <- 1 truc <- function(y) {y^(p[1]-1)/(1+y)^(p[1]+p[2])} pbeta2 <- function(z,p) 1/beta(p[1],p[2])*integrate(truc,0,z)$value machin <- pbeta2(vector,p) just return a single value Thanks for your help
2011 Apr 26
1
About snow packages
Dear Luke ! Thanh you for the lovely packages. I have used it, it woks fine for Linux, XP, but concerning about windows 7 - 64 bits. I have problem with function makeCluster(). with R 13.0 version. I wonder it may caused a update problem or ??? Do you have any hint ??? Best Truc
2010 Feb 23
1
RODBC to import/export xls files
...o works great, but how can I append lines? This function allows me to append new sheets in the file, but I would also like to append new lines of data onto one of the sheets. How can I do that? - The last problem: I would like to export a dataframe, but I get this error message: > save2excel(truc, "test") Error in sqlSave(xlsFile, x, tablename = t.name, rownames = FALSE, addPK = T) : HYS21 -1508 [Microsoft][Pilote ODBC Excel] Le champ 'Group' existe d?j? dans la table 'test'. [RODBC] ERROR: Could not SQLExecDirect 'CREATE TABLE [test] ("Group"...
2005 Aug 21
1
Warning when using 'prelim.mix' from the package 'mix'
...f numeric variables with some missing values. I would like to approximate these missing values using some algorithm. I thereby chose the mix package. But when trying to run the 'prelim.mix' function (aka the function that will prepare the data for further calculations), R says: prelim.mix(truc,0) Error in as.integer.default(list(c(32, 52, 32, 27, 34, 35, 35, 28, 42, : the object (list) can't be converted in 'integer' I roughly translated the word in english, because it was localized in french. I would like to correct this. Laurent -- --~~ Toulouse, Grenoble, Auch, Arca...
2006 Jun 15
1
Performance leak with concurrent requests on static files (Rails)
...79.148 [ms] (mean) Time per request: 92.638 [ms] (mean, across all concurrent requests) lsof tool give indications about what happened : $ lsof -p 32200 COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME mongrel_r 32200 curio cwd DIR 8,3 4096 67168034 /home/curio/truc mongrel_r 32200 curio rtd DIR 8,3 4096 128 / mongrel_r 32200 curio txt REG 8,3 782262 671306909 /usr/local/bin/ruby mongrel_r 32200 curio mem REG 0,0 0 [heap] (stat: No such file or directory) mongrel_r 32200 curio mem REG 8,3 18707 1344...
2018 May 09
2
ScalarEvolution questions
...CEV2: 0 Extra information "n.addr.0 > 1" 2) How to feed the relational information to SCEV, i.e. "a > b". This relational information may not be explicitly available in the program. 3) Is there any way in SCEV to force the compute(i.e. add) by ignore the cast(sext, zext, truc) SCEV: (2 + (sext i32 (-1 + %n.addr.0) to i64)) After force addition expecting something like: "(1 + %n.addr.0)" Any help by answer or pointers will be really useful. Thanks, Ashutosh -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm....
2003 Jan 20
2
ave across columns
Hi: How do I find average across three columns such as weight1, weight2, weight3 (20 people, each person has three different measures)? They have NA's also. Thanks Tom, Univ of Pittsburgh, ttrut at yahoo.com
2018 May 10
0
ScalarEvolution questions
...available in the program. Take a look at how SCEV uses assumes. Given what you've said so far, perhaps the best fix is to add the extra constraints you have as assumes and see what SCEV does? > 3) Is there any way in SCEV to force the compute(i.e. add) by ignore the > cast(sext, zext, truc) > > SCEV: (2 + (sext i32 (-1 + %n.addr.0) to i64)) > > After force addition expecting something like: “(1 + %n.addr.0)” You can't ask SCEV to do this directly, but you can rewrite SCEV expressions to substitute subexpressions in any way you like. E.g. see SCEVInitRewriter. -- S...
2018 May 10
2
ScalarEvolution questions
...available in the program. Take a look at how SCEV uses assumes. Given what you've said so far, perhaps the best fix is to add the extra constraints you have as assumes and see what SCEV does? > 3) Is there any way in SCEV to force the compute(i.e. add) by ignore > the cast(sext, zext, truc) > > SCEV: (2 + (sext i32 (-1 + %n.addr.0) to i64)) > > After force addition expecting something like: “(1 + %n.addr.0)” You can't ask SCEV to do this directly, but you can rewrite SCEV expressions to substitute subexpressions in any way you like. E.g. see SCEVInitRewriter. -- S...
2009 May 06
1
Samba group management understanding
...te mask = 0770 # valid users = @enseign # directory mask = 0775 # force group = enseign Commented values work fine but are not required to expose my problem so I use very basic share settings Under linux I create the following file in /test_smb: -rwxrw---- 1 gbayard enseign 8 avr 29 15:03 truc.txt After I restart smb with /etc/init.d/smb restart I switch to XP and go to my share \\server\test and here is what's happening: - if I connect with user gbayard (who is the share user) everything is right. I can create/edit/destroy files - if I connect with user javerage who belongs to grou...
2009 Feb 19
2
table with 3 variables
I have the initial matrice: > *data.frame(Subject=rep(100:101, each=4), Quarter=rep(paste("Q",1:4, sep=""),2), Boolean = rep(c("Y","N"),4))* Subject Quarter Boolean 1 100 Q1 Y 2 100 Q2 N 3 100 Q3 Y 4 100 Q4 N 5 101 Q1 Y 6 101 Q2 N 7 101 Q3 Y 8 101
2002 Sep 26
1
Cannot join a Samba Domain with a win2k station
.../var/lib/samba/netlogon guest ok = yes preexec close = no root preexec close = no comment = Network Logon SErvice [printers] comment = Les imprimantes available = yes printable = yes browseable = yes public = yes [Public] comment = Le repertoire avec plein de trucs available = yes browseable = yes path = /public public = yes guest only = no writable = yes only user = no preexec close = no root preexec close = no force user = root force group = root -------------- smb.conf -------------------- thanks in advance M...
2018 May 16
0
ScalarEvolution questions
...available in the program. Take a look at how SCEV uses assumes. Given what you've said so far, perhaps the best fix is to add the extra constraints you have as assumes and see what SCEV does? > 3) Is there any way in SCEV to force the compute(i.e. add) by ignore > the cast(sext, zext, truc) > > SCEV: (2 + (sext i32 (-1 + %n.addr.0) to i64)) > > After force addition expecting something like: “(1 + %n.addr.0)” You can't ask SCEV to do this directly, but you can rewrite SCEV expressions to substitute subexpressions in any way you like. E.g. see SCEVInitRewriter. -- S...
2007 Nov 21
3
[LLVMdev] Add/sub with carry; widening multiply
I've been playing around with llvm lately and I was wondering something about the bitcode instructions for basic arithmetic. Is there any plan to provide instructions that perform widening multiply, or add with carry? It might be written as: mulw i32 %lhs %rhs -> i64 ; widening multiply addw i32 %lhs %rhs -> i33 ; widening add addc i32 %lhs, i32 %rhs, i1 %c -> i33 ; add with carry...
2004 Aug 06
2
quelques questions à propos d'icecast et autres outils associés...
...ur différents site qui expliquent comment faire, mais méme avec ça je n'y suis pas arrivé... si une personne pouvait m'expliquer ce qui sert à quoi et comment configurer, s'en servir et autre infos de base, car je ne suis pas un technicien informatique et je ne connais pas les petits trucs à savoir... Je crois que je dois d'abord encoder ce que je veux mettre à l'écoute (avec notlame je crois) puis créer mon propre serveur sur ma machine afin de le tester si il fonctionne(je crois que icecast fait le serveur, et je dois verifier sur http://localhost:8000 ) puis une fois...
2018 May 16
1
ScalarEvolution questions
...gram. > > Take a look at how SCEV uses assumes. Given what you've said so far, perhaps the best fix is to add the extra constraints you have as assumes and see what SCEV does? > >> 3) Is there any way in SCEV to force the compute(i.e. add) by ignore >> the cast(sext, zext, truc) >> >> SCEV: (2 + (sext i32 (-1 + %n.addr.0) to i64)) >> >> After force addition expecting something like: “(1 + %n.addr.0)” > > You can't ask SCEV to do this directly, but you can rewrite SCEV expressions to substitute subexpressions in any way you like. E.g. &g...