search for: boat

Displaying 20 results from an estimated 443 matches for "boat".

Did you mean: bloat
2010 Oct 07
3
aggregate text column by a few rows
...For example, for the dataframe below, > a <- rbind(data.frame(id=1, name='Tom', hobby='fishing'),data.frame(id=1, name='Tom', hobby='reading'),data.frame(id=2, name='Mary', hobby='reading'),data.frame(id=3, name='John', hobby='boating'),data.frame(id=2, name='Mary', hobby='running')) > a id name hobby 1 1 Tom fishing 2 1 Tom reading 3 2 Mary reading 4 3 John boating 5 2 Mary running I want output as >b id name hobbies 1 Tom fishing reading 2 Mary reading running 3 Jo...
2014 Jul 09
3
error com un archivo
...an mas datos que los que hay.He comparado con el archivo en excel y los datos de na estan correctos. library(chron) library(xlsx) filename<-"monicap_50.csv" DBxy<-read.csv(filename, sep=";",header=TRUE,dec=",") DBx<-na.omit(DBxy) names(DBx)<-c("Boat","DateTime","TimeDiff", "Latitude", "Longitude", "Course", "Speed", "distNm", "calcSpeed", "calcCourse", "distHb", "Harbour", "idTrip","vmsAngle", "calcAngle&q...
2002 Oct 09
0
Kayak & Boat Fall Clearance
Huge Kayak and Boat Sale. Check it out: http://www.qksrv.net/click-707768-531689 -------------- next part -------------- HTML attachment scrubbed and removed
2013 Oct 24
2
track on boats
Hi professors I'm finding the best package in R for manage a big database about vessels. I need to divided the travel of each boat into tracks. I have GPS points. I would join these points in a line on the map. I make that with the function "lines", but I can't divided by vessel or by track, I saw several packages, for tracking animals but they had specifically variables. And I don't add others like "...
2014 Jun 04
2
error de incompatible methods
...o . Pongo el script entero que utilice y funciono hasta donde me dio error: setwd("C:/Users/Marta/Desktop/DB") library(chron) library(xlsx) filename<-"univerest_50.csv" DBxy<-read.csv(filename, sep=",",header=TRUE) DBx<-DBxy names(DBx)<-c("Boat","DateTime","TimeDiff", "Latitude", "Longitude", "Course", "Speed", "distNm", "calcSpeed", "calcCourse", "distHb", "Harbour", "idTrip","vmsAngle", "calcAngle&q...
2009 Jan 15
2
--compare-dest; I'm missing the boat
I must be seriously misunderstanding the man page coverage of --compre-dest. My take was that if a file in compare-dest=dir matches a file in SOURCE/ then it won't be transferred to DEST/. I tried this test. (d1 has single files and 2 subdir with files) cp -a d1 d1a mkdir d2 rsync -avv --compare-dest="./d1a" d1/ d2/ d1a is carbon copy of d1 but still every last file in
2006 Mar 01
1
Boat loads of: 'localhost kernel: cdrom: open failed.'
Another question: How can a supress these messages from filling up my syslog file? Mar 1 01:31:26 localhost kernel: cdrom: open failed. Mar 1 01:31:57 localhost last message repeated 15 times Mar 1 01:31:59 localhost kernel: cdrom: open failed. Mar 1 01:32:01 localhost kernel: cdrom: open failed. I've got 'noauto' in
2003 Mar 13
1
BUG: read: Invalid argument
...box (cygwin, rsync version 2.5.5). This setup/command had previously worked for a bit (cygwin at rsync version 2.4.6 AFAICR), but yesterday it hung, so, finding some mail-list entries about that, I upgraded cygwin, and now I get this: C:\>c:\cygwin\bin\rsync.exe -vvvvvv -essh -ac --delete ik@boat:/usr/local/cvs /cvs-bup/rsync cmd=ssh machine=boat user=ik path=/usr/local/cvs cmd=ssh -l ik boat rsync --server --sender -vvvvvvlogDtprc --delete . /usr/local/cvs opening connection using ssh -l ik boat rsync --server --sender -vvvvvvlogDtprc --delete . /usr/local/cvs read: Invalid argument rsync:...
2006 Jan 09
4
Switching databases in Rails v1.0 app
...lo, I need some guidance. I have a need to: a) Login, validating against a "system-level" user database - no big deal, then b) Depending upon the login, select a customer database for processing. For instance, assume that my login profile lists an area of interest: cars, motorcycles or boats. Each of these has a database, with identical table formats. If my login shows my area of interest to be boats, then I want to disconnect from the system-level database, and establish a connection to the boats database. At this point in time only the system-level database appears in the databa...
2007 Feb 21
4
Solaris/SSLonly/Lots of Users
...limited to that by the 32-bit libraries. We are looking at either compiling Dovecot in 64-bit and letting dovecot-auth file descriptors accumulate (not ideal), or providing Timo with access to one of our test servers so he can debug the problem. However, I would like to hear of anyone in the same boat first. Thanks! -- Steven F. Siirila Office: Lind Hall, Room 130B Internet Services E-mail: sfs at umn.edu Office of Information Technology Voice: (612) 626-0244 University of Minnesota Fax: (612) 626-7593
2014 Jun 03
3
error de incompatible methods
Hola!! Estoy intentando ejecutar un script com horas, al principio ejecute estos comandos DBx$Date<-strptime(DBx$Date, "%d-%m-%Y") ###Monicap use ; other use Y DBx$Year<-as.POSIXlt(DBx$Date)$year+1900 if(filename!="monicap_50.csv") {DBx$Time<-paste(DBx$Time, ":00", sep="")} Pero me daba el error de que mi base de datos tenia las
2010 May 03
2
Hierarchical factors
...mbers of 4-digit codes (4231 = Motor Vehicle and Motor Vehicle Parts and Supplies Merchant Wholesalers), then varying numbers of five-digit codes, varying numbers of six-digit codes, etc. At the lowest level (longest code) one can readily tell all the higher levels. For example, 441222 is "Boat Dealers" who are part of 44122, "Motorcycle, Boat, and Other Motor Vehicle Dealers," which is part of 4412 (Other Motor Vehicle Dealers), which is part of 441 (Motor Vehicle and Parts Dealers), which is part of 44 (Retail Trade). (The US Census Bureau has extended the 6-digit NAI...
2014 Oct 13
16
[LLVMdev] RFC: variable names
...65) +++ CodingStandards.rst (working copy) @@ -1073,8 +1073,8 @@ nouns and start with an upper-case letter (e.g. ``TextFileReader``). * **Variable names** should be nouns (as they represent state). The name should - be camel case, and start with an upper case letter (e.g. ``Leader`` or - ``Boats``). + be camel case, and start with a lower case letter (e.g. ``leader`` or + ``boats``). * **Function names** should be verb phrases (as they represent actions), and command-like function should be imperative. The name should be camel case, -------------- next part -------------- An HT...
2011 Jun 07
3
Representacion gráfica de 8 categorías
Hola, Estoy buscando una representación gráfica similar a la que da: ternatyplot del paquete vcd : data(Lifeboats) attach(Lifeboats) ternaryplot( Lifeboats[,4:6], pch = ifelse(side=="Port", 1, 19), col = ifelse(side=="Port", "red", "blue"), id = ifelse(men/total > 0.1, as.character(boat), NA), main = "Lifeboats on Titanic" ) Pero con mas de 3 e...
2013 Apr 26
0
[LLVMdev] ConstantFoldBinaryFP and cross compilation
...stomers who call libm functions > with constants (or their LLVM intrinsic equivalents) are get very angry if > they don't get constant folded, and they're not picky at all about the > precision. > If, peradventure, you're using fast-math mode, then you're in a different boat. Dan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130426/8ac3cd59/attachment.html>
2019 Nov 15
2
C++11 Move for LLVM/Clang
...on the gcc side with multi-threading it and researching that. However in my time there it seems that both projects can really take advantage of certain C++11 features, most notably std::move, r values, auto and perhaps stronger pointer/floating types. It seems that clang/LLVM are in the same boat and it would help mostly with IR passes or backends and I would like some thoughts if people want to do this, Nick
2006 Mar 22
3
STI and ActiveRecord attributes unprotected
Hi, This does not seem to be covered anywhere. Since base class extends ActiveRecord with a table that has fields for all heirs, would that mean that any heir class can access any of those attributes, including ones that belong to other heirs? Or I am missing something? -- Posted via http://www.ruby-forum.com/.
2008 Apr 04
5
Uptake of wine users
I hazard to submit, more people are turning to opensource as XP becomes obsolete. Perhaps it is time to dust off the 101 material and get it ready to cut and paste in... -------------- next part -------------- An HTML attachment was scrubbed... URL: http://www.winehq.org/pipermail/wine-users/attachments/20080404/6d2ca5f6/attachment.htm
2007 Oct 15
0
converting from HABTM to has_many :through
...ms like I''m using too much code. I couldn''t figure out how to get the join model objects to update automatically as a result of updating the primary object, so I''ve ended up doing individual saves/updates on each join model object. The story is a regatta can include many boat classes, and a boat class can be included in many regattas. class Regatta < ActiveRecord::Base has_many :inclusions has_many :boat_classes, :through => :inclusions has_and_belongs_to_many :users end class BoatClass < ActiveRecord::Base has_many :inclusions has_many :regattas, :...
2015 Dec 07
4
Version numbering vis a vis CentOS and RHEL
...es 7.1.1503. Do you see this as an issue? > > Yes. It confuses humans. There have been a bunch of examples given of > how it confuses humans. A simple fix for this human issue is to use > 7.1.1503 on the website, here on the mailing list, etc. And then we?re right back in the same old boat: With every new release, the same old thread will pop up, ?How do I make my servers stay on CentOS 7.1?? Give up on the point release idea. It?s CentOS 7; there is no CentOS 7.1. The only reason there?s a YYMM part is that it?s a media respin. Best ignore that wherever practical.