search for: tothe

Displaying 20 results from an estimated 117 matches for "tothe".

Did you mean: othe
2002 Nov 10
4
frequency table
is anybody whoo know something about making frequency tables in R. i'm just beginner in R. thank you. -=-=-=-=-=-=-=-=-=-=- milan toth http://toth.host.sk -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the
2011 May 20
7
Finally cracked the mystery of motherboards with Vt-d support
After contacting Asus, MSI and Gigabyte, this is what I got back. Only motherboards with the QXX chipsets and certified with the Intel VPro support the Vt-d virtualization technology. I''m not sure about MSI though, because this is what I got from their support: "Almost board could support. Please refer to our website, http://www.msi.com/product/mb/." The problem is that
2020 Nov 20
2
return (x+1) * 1000
Without having dug into the details, it could be that one could update the parser by making a 'return' a keyword and require it to be followed by a parenthesis that optionally contains an expression followed by end of statement (newline or semicolon). Such a "promotion" of the 'return' statement seems backward compatible and would end up throwing syntax errors on:
2020 Nov 20
2
return (x+1) * 1000
And the related: > f = function() stop(return("lol")) > f() [1] "lol" I have a feeling all of this is just return() performing correctly though. If there are already R CMD CHECK checks for this kind of thing (I wasnt sure but I'm hearing from others there may be/are) that may be (and/or may need to be) sufficient. ~G On Fri, Nov 20, 2020 at 3:27 PM D?nes T?th
2006 Aug 11
3
XP clients disconnected during trasnfer of larger files tothe samba server
...--- From: samba-bounces+dmacpherson=mainframe.ca@lists.samba.org [mailto:samba-bounces+dmacpherson=mainframe.ca@lists.samba.org] On Behalf Of Derrick MacPherson Sent: Thursday, August 10, 2006 5:47 PM To: samba@lists.samba.org Subject: [Samba] XP clients disconnected during trasnfer of larger files tothe samba server i'm having an issue when transferring large files to the samba servers from an xp client - files about 1GB or larger. about 70% into the transfer i get a network share no longer exists error and the transfer fails. I can pull down from the server fine with no issues. The XP machi...
2013 Nov 18
5
Anyone using VT-d for GPUs on desktop/workstation?
Is there anyone actually using VT-d for GPU cards? From what I understand NVidia is impossible, but AMD does work for some cards. I would appreciate any hints from people that are actively using this technology. -- Simon Toth
2020 Nov 21
1
return (x+1) * 1000
On 20/11/2020 7:01 p.m., Ben Bolker wrote: > I may be unusual but I don't find these examples surprising at all/ > I don't think I would make these mistakes (maybe it's easier to make > that mistake if you're used to a language where 'return' is a keyword > rather than a function? > > My two cents would be that it would make more sense to (1) write
2007 Dec 26
7
Which is faster: searching in a file or in a database
Hello, I have ten CVS file with about 20000 rows in each. If I want to search in these files for example get every row that has the word "apple" i a column, which is faster: If I read all these ten files into the database and then making search in the database or If I search directly in the files for this inforamtion? Thank you! Please motivate your answer and include a code to make
2018 May 03
7
length of `...`
Hi, In some cases the number of arguments passed as ... must be determined inside a function, without evaluating the arguments themselves. I use the following construct: dotlength <- function(...) length(substitute(expression(...))) - 1L # Usage (returns 3): dotlength(1, 4, something = undefined) How can I define a method for length() which could be called directly on `...`? Or is it an
2011 Feb 02
4
testing randomness of random number generators with student t-test?
...uality of random number generators -- but in an idle moment I wondered what to expect from something like the following: randa<-runif(1000) randb<-runif(1000) t.test(randa,randb)$p.value var.test(randa,randb)$p.value [repeat ad nauseum] Is the range of p-values I get in any way related tothe "quality" of the random number generator? thanks Carl
2011 Mar 01
1
Logistic Stepwise Criterion
Dear R-help members, I'd like to run a binomial logistic stepwise regression with ten explanatory variables and as many interaction terms as R can handle. I'll come up with the right R command sooner or later, but my real question is whether and how the criterion for the evaluation of the different models can be set to be the probability of the residual deviance in the Chi-Square
2017 Sep 21
1
Fwd: Upgrade Gluster 3.7 to 3.12 and add 3rd replica [howto/help]
Just making sure this gets through. ---------- Forwarded message ---------- From: Martin Toth <snowmailer at gmail.com> Date: Thu, Sep 21, 2017 at 9:17 AM Subject: Upgrade Gluster 3.7 to 3.12 and add 3rd replica [howto/help] To: gluster-users at gluster.org Cc: Marek Toth <scorpion909 at gmail.com>, amye at redhat.com Hello all fellow GlusterFriends, I would like you to comment /
2020 Nov 21
0
return (x+1) * 1000
I may be unusual but I don't find these examples surprising at all/ I don't think I would make these mistakes (maybe it's easier to make that mistake if you're used to a language where 'return' is a keyword rather than a function? My two cents would be that it would make more sense to (1) write code to detect these constructions in existing R code (I'm not good at
2014 Jun 27
1
BUG: segfault in auth when user listed multiple times in LDAP
Hi, I think I found a bug in the auth module. It can be triggered when the userdb is in LDAP and an user is found multiple times in LDAP. Dovecot version 2.2.10 (from ATrpms Testing) running on CentOS 6.5 x64. Jun 27 10:34:34 server dovecot: auth: Debug: ldap(USER): user search: base=dc=linguamatics,dc=com scope=subtree filter=( & (uid=user) (|
2020 Mar 12
2
support of `substitute(...())`
Dear R Core Team, I learnt approx. two years ago in this mailing list that one can use the following "trick" to get a (dotted pair)list of the ellipsis arguments inside a function: `substitute(...())` Now my problem is that I can not find any occurrence of this call within the R source - the most frequent solution there is `substitute(list(...))[-1L] ` I would like to know if: 1)
2020 Nov 20
0
return (x+1) * 1000
Yes, the behaviour of return() is absolutely consistent. I am wondering though how many experienced R developers would predict the correct return value just by looking at those code snippets. On 11/21/20 12:33 AM, Gabriel Becker wrote: > And the related: > > > f = function() stop(return("lol")) > > > f() > > [1] "lol" > >
2008 Jan 31
1
how to customize boxplot
...t skewed. The problem is that with standard boxplots a too large number of observations are displayed as outliers. I also tried to display the log of the observations, but even then there are to may outliers to my taste. So I'd like to change the standard IQR box to a box which displays the 5th tothe 95th percentile instead of the standard 25th to 75th percentile. Is this possible and if so, how? I use both R and Splus, so I'd like to know for both flavours of S. Regards, Cornelis
2005 May 26
1
wfq implementation in linux
Hi all As part of may project i wants to implement the WFQ in linux, at present upto my knowledge there is no such implementation in linux. The only mannual i got from "Csaba Toth", He explained the tc command so i hope that is in linux also. DID any one know about it, Please infome me about it also, Thanks for all regards ********* *Sunil* *********
2004 Feb 12
1
Solution: iproute2 and kernel 2.6.1
Thanks Toth ----- Toth Szabolcs wrote ----- > I have read on a mail list that you should install the > db-4.1.25 Berkeley DB 4.1.25) get the > iproute2-2.4.7-now-ss020116-try.tar.gz and patch which > you need. Woohoo! Finally, an answer which just happened to point me in the right direction. Also, I spent a little more time scouring through the compile errors. The solution is in
2005 Jul 22
2
memory cleaning
Hi R Users, After some research I haven't find what I want. I'm manipulating a dataframe with 70k rows and 30 variables, and I run out of memory when exporting this in a *.txt file after some computing I have used : > memory.size()/1048576.0 [1] 103.7730 and I make my export : > write.table(cox,"d:/tablefinal2.txt",row.names=F,sep=';') >