search for: zipped

Displaying 20 results from an estimated 8394 matches for "zipped".

Did you mean: zapped
2007 Feb 06
3
installing packages and windows vista
I installed R (R-2.4.1-win32.exe) on a new computer with Windows Vista and a 64 bit operating system (hp dv9000 with intel core t7200). The base R runs fine, but I can not get any of the packages to load. From within R I choose install packages choose a site then a package. I tried installing 2 packages and get similar errors (see below), I just copied and pasted lines from R. Can anyone
2012 Jul 09
1
[LLVMdev] Error generating a executable using llcj
I installed vmkit-0.29 and tried to generate a executable using llcj I generated the libvmjc and updated the library path export LD_LIBRARY_PATH=$(VMKIT_OBJ)/Release/lib llcj --main=hello hello.class -o hello but i am getting the following error /home/shyam/classpath-0.97.2/lib/vmkit/Release+Debug/lib/libvmjc.a(glibj.zip.o): In function
2009 Nov 01
2
CentOS Mirrored On RapidShare [Links Here]
Hey List, Firstly I am sorry for the length of this email and that you are all having too receive it but the point is that this email will now go into the archive and be indexed by Google (hopefully) and thusly, people will be able to find these links through Google. My goal is to mirror CentOS on RapidShare. "Why you fool there are loads of mirrors?" you might ask; simply for
2010 Mar 13
3
How can I access a ZIP file that's over 2Gb?
I have a zip file. It is over 2Gb in size: -rw-r--r-- 1 sweh sweh 2383956582 Mar 13 13:44 test.zip The standard "unzip" program barfs: % unzip -l test.zip Archive: test.zip End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part archive. In the latter case the central directory and zipfile comment
2007 Nov 01
5
monster method (too hard for my skill level)
I need to write a method for calculating the fee for medical procedures with respect to area. I have all the tables and data but its hard to give that here. Can someone take a look at this ''stub'' method and help me out? def calculate_fee # strip out the first 3 numbers of the user entered zip code # use those 3 numbers to identify row in [zipcodes table] (between upper and
2003 Jul 01
2
file sizes different even after successful rsync
Is it even remotely possible that after a successful rsync, the file sizes on both ends are different ??? We use rsync extensively to distribute our builds across all our development sites. Here is how our rsync process works 1. SiteA creates a build #1 2. SiteB rsync's build #1 3. SiteA creates a build #2 4. SiteB rsync's build #2 using contents of build #01 (i.e. we rsync build #02
2011 Sep 21
4
rubyzip with Ruby 1.9.2 and Rails 3.1 - require 'zip/zip' fails
I''m trying to move my application from Rails 2.3.5 to Rails 3.1 which is a challenge. In my application, require ''zip/zip'' fails with ''no such file to load -- zip/zip gem list --local shows rubyzip (0.9.4) I see zip.rb in d:\ruby192\lib\ruby\gems\1.9.1\gems\rubyzip-0.9.4\lib\zip\ -- Posted via http://www.ruby-forum.com/. -- You received this message
2003 Sep 30
2
problem with batch mode:
Hi! I try to use batch mode to send only the difference between two packed CDs by email over a slow line. I create the diff with: rsync -avvv --write-batch=rs CD-ROM-V6.6.32.zip CD-ROM-V6.6.31.zip where alfred:/Auslieferung/CD # l -n -rw-r--r-- 1 0 0 453248121 Sep 2 16:22 CD-ROM-V6.6.31.zip -rw-r--r-- 1 0 0 407416499 Sep 29 13:39 CD-ROM-V6.6.32.zip resulting
2004 May 19
2
Installing packages from ZIP files
I have R 1.9.0 running under Solaris 2.9 ona SunBlade 100, and am very happy with it. I heard about the stuff at www.rmetrics.org and thought it might be worth looking at. However, what I found there is a bunch of .zip files. The entry page suggests that there is some way to install packages from .zip files in R, but I have searched all the documentation I have and cannot find it. _Is_ there
2005 Sep 24
0
[Bug 3116] New: large tar files: 1 gig size: retransmitted: rsync_rsh
https://bugzilla.samba.org/show_bug.cgi?id=3116 Summary: large tar files: 1 gig size: retransmitted: rsync_rsh Product: rsync Version: 2.6.6 Platform: x86 OS/Version: FreeBSD Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy:
2006 Mar 22
5
install local packages
Hello all, I'm trying to install the local package under window system. Two ways I've tried: 1. using the menu"packages" "install package(s) from local zip files...". My .zip file is "mclust.zip". But it shows Errors which are: "Error in gzfile(file,"r"): unable to open connection In addition: Warning messages: 1.error -1 in
2005 Apr 07
2
Zipping Rdata Files
Saving Rdata files in a zip archive form can in some cases save a considerable amount of disk space. R has the zip.file.extract function to extract files from zip archives, but appears not to have any corresponding function to save in zipped form. (At least I have not been able to find anything in the help files or through searching the mail archives.) The system function can be used to call gzip or some other utility, but perhaps there is a more direct method. Also, when I use gzip to zip a file, I get an error message when using zi...
2003 Oct 01
0
AW: problem with batch mode:
OK. I got the rsync CVS code and compiled under Linux. That did the job, but only with --no-whole-file because of the local transfer. I then tried to read-batch... under Windows / Cygwin with the current Cygwin rsync. That didn't work - as expected. After compiling again under cygwin it worked! I can now create a diff from a new CD to the version before and send the diff files by email. On
2010 Jul 19
2
[LLVMdev] VMkit AOT build problem: llc crushed on glibj compilation to native(.s) file
Hi, Trying to build AOT version of vmkit java, building for that classpath glibj.zip: $ cd vmkit/tools/vmjc/libvmjc $ make ENABLE_OPTIMIZED=1 DISABLE_ASSERTIONS=1 REQUIRES_FRAME_POINTER=1 has eventually, after 50 minutes, brought: <<< llvm[0]: Compiling glibj.zip to llvm llvm[0]: Optimizing glibj.zip llvm[0]: Compiling glibj.zip.bc to native UNREACHABLE executed! 0 llc
2010 Feb 10
2
write.zip?
Can one write a zip file from R? I want to create a file with a name like "dat.zip", being a zip file containing "dat.csv". I can create "dat.csv", then call "system('zip -r9 dat.zip dat.csv')". Is there a better way? I can use "gzfile" to write a gz file, but I don't know how to give that a structure that would
2008 May 16
3
aggregate(), with multiple functions in FUN?
I've got a data frame having numerical data by zip code: ZIP DATA 94111 12135.545 93105 321354.65654 94111 545.555 94706 558858.66 ... ... I'm using this function to group records by ZIP and calculate the median of DATA: aggregate(d$DATA, list(Zip = d$ZIP), FUN=median, na.rm=T) but what I really want to do is to calculate several statistics (median,
2013 Feb 20
1
generate variable y to produce excess zero in ZIP analysis
Dear Mr/Mrs I am Lili Puspita Rahayu, student from magister third level of Statistics in Bogor Agriculture University. Mr/ Mrs, now I'm analyzing the Zero inflated Poisson (ZIP), which is a solution of the Poisson regression where the response variable (Y) has zero excess. ZIP now I was doing did not use real data, but using simulated data in R. Simulations by generating data on variables
2003 Apr 22
3
zip.unpack() crashes R (PR#2818)
Full_Name: Henrik Bengtsson Version: R v1.7.0 OS: WinXP Pro Submission from: (NULL) (130.235.2.229) There seems to be an upper limit of the number of files (approx 1000 files) a zip-file can contain when unpacking it with zip.unpack(). This results in an R crash. This bug is urgent since install.packages() relies on zip.unpack() and too big packages/bundles won't install with the current R
2012 Feb 13
3
Assigning a function to the 'times' argument of rep()
Question: I'm trying to use paste() with rep() to reformat a series of values as zip codes. e.g., if column 1 looks like: 52775 83111 99240 4289 112 57701 20001 I want rows 4 and 5 to read, "04289" "00112" My thought was this: > perry_frame$zip <- ifelse(nchar(as.character(perry_frame$zip))<5,
2018 Jul 04
1
unexpected behavior of unzip with list=T and unzip=/usr/bin/unzip
Hello, I encountered some unexpected behavior of unzip when using info-zip's unzip instead of R's internal program. Specifically, unzip("file.zip", list=TRUE, unzip=/usr/bin/unzip) produces incorrect output if the zip archive has filenames with spaces, and results in an error if the zip archive includes an archive comment or file comments. Here is some code to reproduce along