search for: wite

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

Did you mean: wide
2011 Oct 04
3
How to subset() from data frame using specific rows
I have a data frame called chemdata with this structure: > str(chemdata) 'data.frame': 14886 obs. of 4 variables: $ site : Factor w/ 148 levels "BC-0.5","BC-1",..: 104 145 126 115 114 128 124 2 3 3 ... $ sampdate: Date, format: "1996-12-27" "1996-08-22" ... $ param : Factor w/ 8 levels "As","Ca","Cl",..:
2006 Feb 13
1
Managing multiple Dom0''s
Are there people currently managing multiple Dom0''s and making significant use of migration? I''m loking at a potential setup of 16 or so physical systems with perhaps 64 or so virtual systems (DomU''s I suppose Dom0 is also a virtual system if I understand thing correctly, but that''s no twhat I mean here). It seems to me that making heavy use of migration for
2017 Aug 17
0
PAM Clustering
...see that pam require a dataframe OR a dissimilarity matrix. If diss=FALSE then "euclidean" was use.So, I interpret that a matrix of dissimilarity is generated automatically. Problems may be in your data. Indeed pam(ruspini, 4)$diss write a dissimilaty matrix while pam(MYdata,10)$diss wite NULL 2017-08-17 16:03 GMT+02:00 Sema Atasever <s.atasever at gmail.com>: > Dear Germano, > > Thank you for your fast reply, > > In the above code, *MYData *is the actual data set. > > Do not we need to convert *MYData to *the dissimilarity matrix using > *pam(as.dis...
2017 Aug 17
2
PAM Clustering
Dear Germano, Thank you for your fast reply, In the above code, *MYData *is the actual data set. Do not we need to convert *MYData to *the dissimilarity matrix using *pam(as.dist(**MYData**), k = 10, diss = TRUE*)* code line?* *Regards.* On Thu, Aug 17, 2017 at 2:58 PM, Germano Rossi <germano.rossi at gmail.com> wrote: > try this > > MYdata <-
2003 Jun 01
2
AW: samba installation
Hi again, A.A wrote: > Hi Thomas, > As i wrote that's still the old Version: > /usr/local/samba-2.2.8a/bin/smbstatus --> samba version 2.2.7a-SUSE > When i type "Which smbstatus" i get /usr/bin /smbstatus this looks like a standard installation of SuSE. > > I dont know what you mean with : > For startup the samba processes you should change your
2001 Aug 06
2
Wine with CUPS support
Hello, some time ago, I saw a version of wine that relies on CUPS for printing. At that time I was using apsfilter to print so I didn't fetch this version. Now I'd like to make a download but can't manage to find this version anymore. Any hints? Andi
2014 Sep 30
0
[Bug 10847] New: inconsistent units should be unified and follow SI/IEC standard
...refix standard [1] and add a single space between the value and the unit: 3.13G -> 3.13 GB * to note all units in a unique way: now it is "K bytes/sec" and "kB/s" * to chose between binary IEC [2] units and SI units (perhaps ask the user for an option? --iec --si) and wite a short note in the man page like 1 kB = 1000 Byte or 1 KiB = 1024 B. * to note "seconds" with the SI symbol "s" [3] [1] http://en.wikipedia.org/wiki/Metric_prefix [2] http://physics.nist.gov/cuu/Units/binary.html [3] http://www.bipm.org/en/measurement-units/ -- Configure...
2008 Apr 14
1
clean-up actions after non-local exits
...mply that the primitive functions like allocVector, > > > mkChar, etc., which are likely to occur in any compiled code called > > > via .Call, are not supposed to handle interrupts in any way? > > > > No it does not. Read the full context. It says that if you > > wite a piece of C code that may run a long time and you want > > to guarantee that users will be able to interrupt your code > > then you should insure that R_CheckUserInterrupt is called > > periodically. If your code already periodically calls other > > R code that checks for i...
2009 Sep 14
3
Exporting Numerous Graphs
Hi all, I have got 27 graphs to export (not a lot...I know!). How can I fit all of them into a single file like PNG without adjusting the size of the graphs? What's in my mind is like pasting graphs into Word, in which I can just scroll down to view the graphs. Thanks for your attention. Much appreciated. Chris -- View this message in context:
2003 May 23
3
Not getting all data to a text file via write.table
Hi all- Thanks in advance for your help. I have a 2275x1 table of residuals from an lm() regression. I want to analyze this further in Excel. I tried using: df<-resid(object) write.table(df) and this yields a nice looking output in R, but because of screen constraints, I seem to loose data "out-the-top" of the Console -- which doesn't bother me, as long as I can see it
2004 Mar 07
1
A couple more minor questions about OCFS and RHEL3
Oracle appears to have Wim chained in the basement, forced to answer mailing list questions at all hours. I do appreciate it. Our cluster has been stable since we installed RAC, but a few minor issues have me concerned. First, our storage array seems to maintain continuous low-level activity even when the database is shut down. The CPUs spend a modest amount of time in iowait state while this
2003 Jun 02
0
AW: Re: AW: samba installation
...e running the latest samba distribution. If so, change the init scripts (/etc/init.d/samba) accordingly. ------------------------ "A.A" <opensoft@gmx.de> wrote: ------------------------ hi, > >i see there is no sbin directory after the installation!! > >After unpacking wite xzvf and Instllation(.configure/make/make install/ma >ke >installman ) of samba-2.2.81.tar.gz i have two directories: > >smba and samba-2.2.8a > >There are in samba directory only bin, lib, man swat,private, var > >and in samba-2.2.8a are : source, packing, swat, source test...
2003 Jun 02
0
AW: Re: AW: samba installation
...amba distribution. If so, change th >e >init scripts (/etc/init.d/samba) accordingly. > >------------------------ > "A.A" wrote: >------------------------ >hi, >> >>i see there is no sbin directory after the installation!! >> >>After unpacking wite xzvf and Instllation(.configure/make/make install/m >a >>ke >>installman ) of samba-2.2.81.tar.gz i have two directories: >> >>smba and samba-2.2.8a >> >>There are in samba directory only bin, lib, man swat,private, var >> >>and in samba-2.2.8a are...
2004 Jun 14
5
mkChar can be interrupted
Hi, As was discussed earlier in another thread and as documented in R-exts .Call() should not be interruptible by Ctrl-C. However the following code, which spends most of its time inside mkChar, turned out to be interruptible on RH-7.3 R-1.8.1 gcc-2.96: #include <Rinternals.h> #include <R.h> SEXP foo0(const SEXP nSexp) { int i, n; SEXP resSexp; if (!isInteger(nSexp))
2003 Jun 02
0
AW: AW: Re: AW: samba installation
...amba distribution. If so, change th >e >init scripts (/etc/init.d/samba) accordingly. > >------------------------ > "A.A" wrote: >------------------------ >hi, >> >>i see there is no sbin directory after the installation!! >> >>After unpacking wite xzvf and Instllation(.configure/make/make install/m >a >>ke >>installman ) of samba-2.2.81.tar.gz i have two directories: >> >>smba and samba-2.2.8a >> >>There are in samba directory only bin, lib, man swat,private, var >> >>and in samba-2.2.8a are...
2003 Jun 02
0
AW: AW: Re: AW: samba installation
...e >>init scripts (/etc/init.d/samba) accordingly. >> >>------------------------ >> "A.A" wrote: >>------------------------ >>hi, >>> >>>i see there is no sbin directory after the installation!! >>> >>>After unpacking wite xzvf and Instllation(.configure/make/make install/ >m >>a >>>ke >>>installman ) of samba-2.2.81.tar.gz i have two directories: >>> >>>smba and samba-2.2.8a >>> >>>There are in samba directory only bin, lib, man swat,private, var >&gt...
2003 Jun 02
1
AW: AW: AW: AW: Re: AW: samba installatio
...samba) accordingly. >>> >>>------------------------ >>> "A.A" wrote: >>>------------------------ >>>hi, >>>> >>>>i see there is no sbin directory after the installation!! >>>> >>>>After unpacking wite xzvf and Instllation(.configure/make/make install >/ >>m >>>a >>>>ke >>>>installman ) of samba-2.2.81.tar.gz i have two directories: >>>> >>>>smba and samba-2.2.8a >>>> >>>>There are in samba directory only bi...
2003 Jun 02
0
AW: AW: AW: Re: AW: samba installation
...e >>init scripts (/etc/init.d/samba) accordingly. >> >>------------------------ >> "A.A" wrote: >>------------------------ >>hi, >>> >>>i see there is no sbin directory after the installation!! >>> >>>After unpacking wite xzvf and Instllation(.configure/make/make install/ >m >>a >>>ke >>>installman ) of samba-2.2.81.tar.gz i have two directories: >>> >>>smba and samba-2.2.8a >>> >>>There are in samba directory only bin, lib, man swat,private, var >&gt...
2003 Jun 02
0
AW: AW: AW: Re: AW: samba installatio
...samba) accordingly. >>> >>>------------------------ >>> "A.A" wrote: >>>------------------------ >>>hi, >>>> >>>>i see there is no sbin directory after the installation!! >>>> >>>>After unpacking wite xzvf and Instllation(.configure/make/make install >/ >>m >>>a >>>>ke >>>>installman ) of samba-2.2.81.tar.gz i have two directories: >>>> >>>>smba and samba-2.2.8a >>>> >>>>There are in samba directory only bi...
2016 Dec 29
0
Allow direct connection between some (but not all) nodes on the network (Guus Sliepen)
...ead access to all the host, if you understand the acl consul system in theory you could archive what you want , the only issue for the moment is that you need to know in advance the name of all the hosts that will be insolated there is a plan to support multiples subnet in the future and you could wite acl tokens with permissions by subnet instead of hosts plese dont doubt to ask me any question, this weeken I plan to write a long documentation El jue., 29 de dic. de 2016 a la(s) 11:02, <tinc-request at tinc-vpn.org> escribió: > Send tinc mailing list submissions to > tinc...