similar to: data frame excerption

Displaying 20 results from an estimated 400 matches similar to: "data frame excerption"

2004 Mar 25
2
downloadable mailing list archive in mbox format
Hi there, I'm beginner and would like to have mailing list archive to read it offline and don't disturb mailing list. I'd prefer mbox format. Regards, Oleg _____________________________________________________________ Oleg Bartunov, sci.researcher, hostmaster of AstroNet, Sternberg Astronomical Institute, Moscow University (Russia) Internet: oleg at sai.msu.su,
2004 Mar 25
1
factor based on pattern match ?
Hello, is't possible to specify pattern in levels ? > y=c("ff","f","m","mm","fm","mf","ffm","mmf","mmm","fff"); > factor(y) [1] ff f m mm fm mf ffm mmf mmm fff Levels: f ff fff ffm fm m mf mm mmf mmm I want to specify levels using regexp ("f.*","m.*") or use
2004 Mar 29
2
cut and factor
Eric, thanks for quick reply. at first look I thought it is what I need, but, unfortunately, it doesn't applied to original data - it creates new data with loosing original indexes ! I want to keep indexes of original data, but replace original data with $mids of corresponding $breaks. So, if I have z = 1:10, t=hist(z,plot=F) > z [1] 1 2 3 4 5 6 7 8 9 10 > t$breaks [1] 0 2
2004 Apr 01
4
multiple plots problem
Hello, for testing & learning purposes I create X11 device and specify layout like layout(c(1,2,3), 3, 1), so I could play with parameters and see several plots at the same time. That works fine until I try to create 4-th plot - all other plots erased. Such behaviour isn't desirable for testing purposes and I'm asking where to look to disable erasing other plots. Regards, Oleg
2006 Oct 03
1
problem installing RdbiPgSQL for 2.4
I just upgraded R to version 2.4.0 and now I can't install packages RdbiPgSQL. I used the same procedure I did for previous versions of R ! Actually, last time I installed RdbiPgSQL day before upgrading but now I got: downloaded 27Kb * Installing *source* package 'RdbiPgSQL' ... creating cache ./config.cache checking for PQconnectdb in -lpq... no I could not find your PostgreSQL
2006 Mar 24
10
innodb vs myisam
Hi, I have been using myisam tables in mysql with rails because my client will soon want fulltext searchable content, however when I migrated my development db from schema.rb all of the tables generated were innodb. I understand that I can override this, but also like the transactions and foreign keys of innodb. So 2 questions really: 1. are transactions in activerecord dependent on innodb or do
2008 Apr 15
5
o2ib module prevents shutdown
Hello, Not sure if this is the right forum: I''m encountering difficulties with o2ib which prevents an LNET shutdown from proceeding: Unloading OpenIB kernel modules:NET: Unregistered protocal family 27 Failed to unload rdma_cm Failed to unload rdma_cm Failed to unload ib_cm Failed to unload ib_sa LustreError: 131-3: Received notification of device removal Please shutdown LNET
2012 Jun 29
2
Cifs permission for mac guests
Hi, I have a FreeNAS server with a cifs share, accessible by all the lan users (guest access) Every one can access it and write in it. When Mac OSX users are creating a file or a folder, they write it with the following permissions : rwxr-xr-x Rhis only happen with mac users. So the other users can't modify or delete theses files/folders. How to configure my share if I want that all the
2008 Apr 02
2
why i can't install wine even i had used the wineinstall
Hi, i had installed the wine by wineinstall.Here is the result : Installation complete for now. Good luck (this is still beta software). If you have problems with WINE, please read the documentation first, as many kinds of potential problems are explained there. [cjzjm100 at localhost wine-0.9.58]$ wine /media/F_drive/Thunder5.7.4.401.exe bash: /usr/bin/wine: there is't that file or content
2012 May 29
2
Ask password when booting Web Server
Hi All, i have a problem after install SSL on Apache, when the installation is well and no problem, if access domain which include SSL, (below) https://centos.co.id and https://centos.org it's work, the real problem when restart my computer (apache), when restart on process ask for password RSA when booting CentOS 5.5, more details can see in picture
2019 Jul 11
2
Re: Strange issues with libvirt v5.5.0
On Thu, Jul 11, 2019 at 16:46:29 +0200, Julian Sternberg wrote: > <html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>Hey Peter,</div> Hi, at first I'd like to ask you to CC the libvirt-users or libvir-list with such kind of questions (questions implying regression of behaviour are okay on the development
2019 Jan 21
2
force re-authentication when accessing different shares
On Mon, 21 Jan 2019 10:43:35 -0400 Robert Marcano via samba <samba at lists.samba.org> wrote: > On 1/21/19 10:24 AM, Harald Glanzer via samba wrote: > > hello & thx for your fast response! > > > > i need a way to create samba shares without creating system user > > accounts: > > > > - add users via smbpasswd with unique password > > - no
2013 Oct 23
2
performance on document.get_data()
I got some performance issue for document.get_data() and enquire.get_mset(). It costs 35 seconds for matches = enquire.get_mset(0,200), and 3 seconds for iterating all doc in matches to get_data. Is't normal? My index contains 30millions documents. I use python binding to operate xapian. Bellow it's my index structure # value: 0:date, 1:site # data: json message which contains: author,
2011 Apr 06
2
[LLVMdev] Incompatible types at call site
Hi Arushi, > I got this from C code compiled by llvm-gcc. > > There is a consistent prototype for the function > > TypHandle Cyclotomic ( hdRes, n, m ) > TypHandle hdRes; > long n, m; > > the call looks as follows, > hdI = ProdCyc( hdI, Cyclotomic( HdResult, n, 1 ) ); I bet the call occurs before the function is defined.
2013 Jul 13
2
Efi64 boot fail during download from kernel and initrd via http
Op 2013-07-13 om 19:58 schreef Michael Szerencsits: > Hi, > > I tested the following config: > > DEFAULT AutoInstall > PROMPT 0 > LABEL AutoInstall > KERNEL http://server/vmlinuz64 > APPEND initrd=http://server/initrd64.img > root=live:http://server/LiveOS/squashfs.img quiet lang=en > keymap=de-latin1 systemd.unit=rescue.target > system.unit=rescue.target
2007 May 21
2
sequentially process a list
Hi dear R users, I'm a R beginner and I have a basic question about sequential treatments of lists. I have a time based (i.e. events are consecutive) list of values of a biological property. Like : time value 1 5 2 10 3 7 4 10 5 19 6 21 7 20 8 18 9 10 10 7 11 8 12 12 13 17 14 19 15 24 16 18 17 15 18
2010 Dec 13
1
Wrong contrast matrix for nested factors in lm(), rlm(), and lmRob()
This message also reports wrong estimates produced by lmRob.fit.compute() for nested factors when using the correct contrast matrix. And in these respects, I have found that S-Plus behaves the same way as R. Using the three available contrast types (sum, treatment, helmert) with lm() or lm.fit(), but just contr.sum with rlm() and lmRob(), and small examples, I generated contrast matrices for
2008 Mar 20
7
Download Problems with lustre 1.6.4.3
Hello, I''ve tried just some minutes ago to download the sourcecode of lustre from [1], but it failed with this error: An error occurred while processing your request. Reference #50.663007d9.1206002944.16ba5fe1 Does anybody have some hints how to get the lustre source code then? I need this tarball for the debian packaging. If someone could point me to an alternative download
2011 Apr 06
0
[LLVMdev] Incompatible types at call site
On Wed, Apr 6, 2011 at 8:35 AM, Duncan Sands <baldrick at free.fr> wrote: > Hi Arushi, > > > I got this from C code compiled by llvm-gcc. >> >> There is a consistent prototype for the function >> >> TypHandle Cyclotomic ( hdRes, n, m ) >> TypHandle hdRes; >> long n, m; >> >> the call looks
2003 Jun 25
5
lossless ogg encoding with good compression rate
I think that there is a very simple way to encode audio files with lossless compression around 35%. (the compression may be improved if we can lose some lsb bits around 30% for 2 and 25% for 3) Other lossless audio encoder I've seen reach at maximum a compression of 48% (*.flac, *.ape) So the questions are: 1- Is someone interested in another encoder? 2- If true n.1 may it be included in ogg