search for: tine

Displaying 20 results from an estimated 58 matches for "tine".

Did you mean: time
2007 Nov 28
2
Different value between R variance and definition of variance
Hi! Let us define random variable: > x = seq(0,1,length=100) If we calculate variance following definition E[(x-E(x))^2] we get: > mean( (x - mean(x))^2 ) # == mean(x^2) - mean(x)^2 0.08501684 And if we use internal R function var: > var(x) 0.08587559 Can anyone tells me why the difference?
2007 Aug 18
2
Problem with lsa package (data.frame) on Windows XP
Dear R team, The following piece of code (to use the lsa package) works fine on my mac os x, but when I run the same code on Windows XP, it doesn't work any more. ### code: library("lsa") matrix1 = textmatrix("C:\\Documents and Settings\\tine stalmans.TINE. 000\\LSA\\cuentos\\", stemming=TRUE, language="spanish", minWordLength=2, minDocFreq=1, stopwords=NULL, vocabulary=NULL) print(matrix1,bag_lines = 3, bag_cols = 3) matrix1 = lw_bintf(matrix1) * gw_idf(matrix1) space = lsa(matrix1, dims = dimcalc_share()) as.textmatr...
2008 Jun 18
3
Number of digits in paste funciton
Hi! Does anyone know hot to set number of digits to be printed in function 'paste'? Tine Mla?
2013 May 11
1
Changes in Makefile/dependencies between Tine 1.0.16 and 1.0.21?
Hi, currently there is a bug report about CVE-2013-1428 in Ubuntu ( https://bugs.launchpad.net/ubuntu/+source/tinc/+bug/1174763). Are there any changes in Makefile or dependencies which make it necessary to adjust a packaging system or does it suffice to adjust version numbers and source-code url? Thanx, Renne -------------- n?chster Teil -------------- Ein Dateianhang mit HTML-Daten wurde
2008 May 21
2
'Extracting' plot area
Hi! Does anyone know hot to save (to png, pdf, ...) only plot area. That is without box around, titles, axis, ... I tried: par(mar=c(0,0,0,0)) and it works for internal viewer (linux and windows). But when I save the image in png it adds that annoying margin around plot area. Any ideas? by, Tine
2008 Jul 10
1
Operator overloading
...ng is there anyway to overload operator for custom class. For example: I have two matrices A and B with same dimensions. I want to overload operator '+' with my own function. Or even better can I create my own (new) operator. Example: A+-B where '+-' would be some function. bye, Tine
2008 Nov 08
3
New to List - just starting to learn R - question about reading in data
...of flat ASCII format with a separate file indicating which columns correspond to which variables. In the Venables and Ripley book on S/R that I'm reading, there doesn't seem to be a way to read this kind of data format into R, and I haven't found anything online. If anyone has the tine, I'd sure appreciate a little guidance. Thanks, DD
1999 Dec 01
2
nlmin
I'm a very recent user of R. I have been adapting my Splus programmes and I found only one (important) problem. There exists no function "nlmin" in R and its substitute, "nlm", does not work well with my kind of problems, sometimes no achieving convergence, other tines "converging" to impossible values. My models are highly nonlinear and are to be estimated by both GMM and empirical likelihood methods. Is there any alternative nonlinear optimization command in R? In the help file it is said that "nlm" is only a preliminary version, is it exp...
2007 Aug 13
2
How to write to a table column by column?
...mn in the csv file. The problem is how to store the second list as a second column, so that the two columns will lie side by side to each other and I can easily compare their elements. ( If I use 'appened=TRUE', the second time series will be stored in the same column. ) Thank you for your tine and your help will be highly appreciated!! Best Yuchen Luo [[alternative HTML version deleted]]
2003 Feb 14
1
programs for genetics - haplo.score for R
A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 1819 bytes Desc: not available Url : https://stat.ethz.ch/pipermail/r-help/attachments/20030214/7f3adccd/attachment.bin
2004 Aug 11
1
Function: integrate
...007, 0.7844318, 0.7838392, 0.7996804, 0.8162264, 0.8245920, 0.8315790, 0.8465705, 0.8623909, 0.8948042, 0.9145519, 0.9141968, 0.9188292, 0.9278436, 0.9264173, 0.9381125, 0.9527778) fct = approxfun(x, y, method="linear", rule=2) integrate(fct, 0, 1)$value My R version is 1.7.1 Regards Tine Buch-Larsen ------------------------------------------------------------------------------ This e-mail and any attachment may be confidential and may also be privileged. If you are not the intended recipient, please notify us immediately and then delete this e-mail and any attachment without reta...
2007 Jun 16
1
linear hypothesis test in gls model
Dear all, For analysis of a longitudinal data set with fixed measurement in time I built a gls model (nlme). For testing hypotheses in this model I used the linear.hypothesis function from the car package. A check with the results obtained in SAS proc MIXED with a repeated statement revealed an inconsistency in the results. The problem can be that the linear.hypothesis function (1) only gives the
2000 Jun 16
0
Memory usage in reload_services()
...ere using samba 1.9.17p4 before migrating to samba 2.0.7 and did not have any similar problems! Environment of our test: ------------------------ Server: SunOS lux 5.6 Generic_105181-17 sun4u sparc SUNW,Ultra-4 Samba: 2.0.7 Smbclient: 1.9.17p4 Thank you in advance for any feedback. Best regards, Tine. -------------- next part -------------- #!/usr/bin/ksh #============================================================== # Description: # This script forces samba process to call reload_services() # over and over again. # # Usage: attach <pid> # <pid> is the pricess id of samba ro...
2008 Jan 28
1
package.skeleton from within function: objects not found
...s: [1] stats graphics grDevices utils datasets methods base > I did not find anything referring to this problem in the help page, on the R mailing list or wiki. Has anyone noticed this or can someone explain to me why my objects cannot be found? Many thanks in advance, best wishes, Tine [[alternative HTML version deleted]]
2004 Apr 24
2
R-devel from rsync 04/23
I see something new and unexpected here. > update.packages() trying URL `http://cran.r-project.org/src/contrib/PACKAGES' Content type `text/plain; charset=iso-8859-1' length 163467 bytes opened URL .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... ......... downloaded
2010 May 20
3
R newbie | sapply and FUN error
...20+ years (and SAS real shines in data handling). So, I've started the process of trying to figure out 'how to do in R what I can do in my sleep in SAS' - specifically wrt to data manipulating. So, these are decidely 'newbie' level questions. So, starting very simple. Created a tine example CSV file, which I call test.csv. Loc,cost A,1 C,3 D,2 F,3 H,4 K,3 M,8 Now, all I want to do is read it in, and derive a new variable which is a Z-transform of 'cost'. Here is what I've tried so far: > prices <- read.csv("c:/documents and settings/user/desktop/test....
2012 Jul 21
1
Panic: file mail-storage.c: line 791 (mailbox_check_mismatching_separators)
Hi, with fetching the folder structure with the webclient Tine i can see following error messages inside of the logfiles: Panic: file mail-storage.c: line 791 (mailbox_check_mismatching_separators): assertion failed: (strncmp(vname, ns->prefix, ns->prefix_len-1) == 0) Error: Raw backtrace: /usr/lib/dovecot/libdovecot.so.0(+0x448fa) [0x7f70036db8fa] -&g...
2012 Oct 11
3
per-user quotas
Hello, I've got quotas set up on an all-user basis on my system, it's a Postfix, Dovecot, Mysql virtual users setup. Currently I have each user getting a 1GB quota with these settings in 90-quota.conf: plugin { quota_rule = *:storage=1G quota_rule2 = Trash:storage=+100M } plugin { quota = maildir:User quota } While this works it's not what I want for all users. Say I add a
2015 May 28
2
preexec and msdfs proxy
...?ngliche Nachricht----- Von: samba-bounces at lists.samba.org [mailto:samba-bounces at lists.samba.org] Im Auftrag von Greg Enlow Gesendet: Mittwoch, 27. Mai 2015 17:21 An: samba at lists.samba.org Cc: Jeremy Allison Betreff: Re: [Samba] preexec and msdfs proxy Hi all, I was going to ask one more tine before I walk away sad and depressed - any hope on finding out why our installation won't fire 'preexec' with 'msdfs proxy' activated? 'til then! Greg Enlow -- Greg Enlow grenlow at hk.mailbox.de On 18 May 2015, at 18:20, Jeremy Allison wrote: On Mon, May 18, 2015 at...
2004 Sep 25
4
Cisco PIX and Asterisk
I cannot get incoming calls to sip phones behind a PIX to work, outgoing is fine. Asterisk (Public IP) --> Internet --> PIX (NAT) --> Sip Phones I have tried no fixup protocol sip, I have punched a hole in the Pix allowing anything from the Asterisk box into the network, still no incoming. I have done all the Wiki suggests in regarding to NAT. Is their a trick getting the