search for: ernie

Displaying 20 results from an estimated 128 matches for "ernie".

2017 Aug 19
4
My very first loop!! I failed. May I have some start-up aid?
Dear all, I have a data similar to this: myframe<- data.frame (ID=c("Ernie", "Ernie","Ernie","Ernie"), Timestamp=c("24.09.2012 08:00", "24.09.2012 09:00", "24.09.2012 10:00", "25.09.2012 10:00"), Longitude=c("8.481","8.482","8.483","8.481"), Latitude=c("...
2017 Aug 19
0
My very first loop!! I failed. May I have some start-up aid?
...of analysis... I really don't know what to expect from the functions. The final step in your sequence produces a vector of sixteen values, not 1 value, nor 4 values, so I don't know how to obtain the 4x3 result you said you expected... I got 16x3. myframe <- data.frame( ID = c( "Ernie", "Ernie","Ernie","Ernie","Ernie","Ernie") , Timestamp = c( "24.09.2012 08:00", "24.09.2012 09:00" , "24.09.2012 10:00", "25.09.2012 10:00"...
2012 Oct 25
2
mean of a value of the last 2 hours
Hello, I have a data frame somewhat like that: myframe <- data.frame (ID=c("Ernie", "Ernie", "Ernie", "Bert", "Bert", "Bert"), Timestamp=c("24.09.2012 09:00", "24.09.2012 10:00", "24.09.2012 11:00"), Hunger=c(1,1,1,2,2,1) ) myframestime <- as.POSIXct (strptime(as.character(myframe$Timestamp),...
1997 Jul 25
7
Amanda 2.3.0.5-Samba 1.9.16p11 PC backups...
...KUP Also, the smbclient call only seems to be working for NT servers. All of the Win95 machines reject the connection. The Win95 machines are set to User-level access control to the same server that samba is running on. >From: root (SysAdmin) >Date: Fri, 25 Jul 1997 12:42:02 -0400 >To: ernie_oporto >Subject: Amanda P0 AMANDA MAIL REPORT FOR July 25, 1997 > >*** A TAPE ERROR OCCURRED: [no tape online]. >*** PERFORMED ALL DUMPS AS INCREMENTAL DUMPS TO HOLDING DISK. > >THESE DUMPS WERE TO DISK. Flush them onto a new tape. >Tonight's dumps should go onto 1 tape: a...
2012 Sep 26
2
average environmental data if AnimalID and Time is duplicated
Hello, I tried for about three hours now to solve this problem but I can't figure it out. I am sure someone knows how do it. At least I hope so. I have a data frame somewhat like this: myframe <- data.frame (ID=c("Ernie", "Ernie", "Bert", "Bert"), Timestamp=c("24.09.2012 09:00", "24.09.2012 09:00", "24.09.2012 10:00", "25.09.2012 10:00"), Hunger=c("1","5","2","2"), Temp=c("25","30"...
2006 Jul 11
2
Bug#377840: dovecot: imap segfaults on small mbox files (2 bytes)
...======================================= makes my imap process crash, resulting in repeatedly spawned (and killed) processes in my log file: ======================================================================================== [...] Jul 11 15:31:04 localhost dovecot: imap-login: Login: user=<ernie>, method=plain, rip=127.0.0.1, lip=127.0.0.1, secured Jul 11 15:31:04 localhost dovecot: child 31284 (imap) killed with signal 11 Jul 11 15:31:04 localhost dovecot: child 31287 (imap) killed with signal 11 Jul 11 15:31:04 localhost dovecot: imap-login: Login: user=<ernie>, method=plain, ri...
2011 Feb 08
4
Remove ActiveRecord::Relation#& alias for 'merge' ? (or at least only reference and not use in AR)
...n: ''|'' => Union ''+'' => UnionALL ''&'' => Intersect ''-'' => Except (Minus for Oracle) to operate on two ActiveRecord::Relation instances. This is sitting as a pending pull request on MetaWhere: https://github.com/ernie/meta_where/pull/12 Ernie Miller and I have been going back and forth. Ernie points out that ActiveRecord is using the alias ''&'' a few times in the code base instead of ''merge'' and overriding this method in MetaWhere would cause some major issues. Thoughts?...
1997 Jul 31
5
SAMBA digest 1372
David Allan Finch wrote: > Has anyone considerd modify the Unix encypt to use > the same system as NT. IE the encypted pasword in the > /etc/passwd or NIS/NIS+ table is the same for both? Err. That would be a *really* bad idea. See the l0phtcrack source for details :-). Seriously, though. The password hashes used on NT are very poor. They don't use salt and people are now
2012 Sep 17
6
count NAs per week
Even though I work with R since a year or so I still struggle with simple problems. I hope someone can help me with this. Been trying for days and am a little frustrated now. I have a data frame somewhat like the one bellow: dattrial<-data.frame(a=c(1,NA,rnorm(4,10)), Week=c(3,3,3,4,4,4)) I want to know how many NAs I have in week 3 and in week 4. -- View this message in context:
2017 Aug 19
0
My very first loop!! I failed. May I have some start-up aid?
[answers inline] On 18 August 2017 at 20:08, Dagmar <Ramgad82 at gmx.net> wrote: > > myframe<- data.frame (ID=c("Ernie", "Ernie","Ernie","Ernie"), > Timestamp=c("24.09.2012 08:00", "24.09.2012 09:00", "24.09.2012 10:00", > "25.09.2012 10:00"), Longitude=c("8.481","8.482","8.483","8.481"), > La...
2010 Sep 08
1
Unintended side-effect from before_remove_const?
...?(:before_remove_const) will cause the failures to come and go at will, but removing the only before_remove_const method I can find, in AR::Base, will not get the failures to stop. This is with Ruby 1.9.2-p0. Any insights (or even confirmations I''m not insane) would be appreciated. :) -Ernie -- Ernie Miller http://metautonomo.us http://github.com/ernie http://twitter.com/erniemiller -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send email to rubyonrails-core@googlegroups.com. To unsubscribe...
2010 Apr 12
2
[PATCH] Access to more Arel predicate types from where condition hash
...y method_missing on Symbol (:table.column), and an operator for method selection -- :column/:method maybe? I don''t know, that syntax looks a bit goofy, too. I chose the # of its relationship to Object#method. Most likely for the same reasons the new routing strings were chosen. Thanks, Ernie -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send email to rubyonrails-core@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com. For more options...
2012 Oct 26
0
mean of a value of the last 2 hours using plyr (Thank you)
Hi dear three helpers, Thanks a lot! Your solutions worked great. Again I learned a lot. Tagmarie Am 25.10.2012 18:36, schrieb Felipe Carrillo: > Another option using plyr, > library(plyr) > myframe <- data.frame (ID=c("Ernie", "Ernie", "Ernie", "Bert", "Bert", > "Bert"), Timestamp=c("24.09.2012 09:00", "24.09.2012 10:00", "24.09.2012 > 11:00"), Hunger=c(1,1,1,2,2,1) ) > myframe > myframestime <- as.POSIXct (strptime(as.c...
2004 Sep 08
0
Postfix > sasl2 > pam > winbind
...od_lookup): winbind, passwd, endpwent, not found and maillog: Apr 20 18:34:57 bert postfix/smtpd[2525]: smtpd_sasl_authenticate: decoded response: michael Apr 20 18:34:57 bert postfix/smtpd[2525]: smtpd_sasl_authenticate: uncoded challenge: Password: Apr 20 18:34:57 bert postfix/smtpd[2525]: > ernie.bio2.RWTH-Aachen.DE[134.130.63.5]: 334 UGFzc3dvcmQ6 Apr 20 18:34:57 bert postfix/smtpd[2525]: < ernie.bio2.RWTH-Aachen.DE[134.130.63.5]: UjZvYTBmSENUSlBvaA== Apr 20 18:34:57 bert postfix/smtpd[2525]: smtpd_sasl_authenticate: decoded response: $passwort Apr 20 18:34:57 bert postfix/smtpd[2525]: w...
2004 Sep 08
0
postfix > sasl > pam > winbind
...od_lookup): winbind, passwd, endpwent, not found and maillog: Apr 20 18:34:57 bert postfix/smtpd[2525]: smtpd_sasl_authenticate: decoded response: michael Apr 20 18:34:57 bert postfix/smtpd[2525]: smtpd_sasl_authenticate: uncoded challenge: Password: Apr 20 18:34:57 bert postfix/smtpd[2525]: > ernie.bio2.RWTH-Aachen.DE[134.130.63.5]: 334 UGFzc3dvcmQ6 Apr 20 18:34:57 bert postfix/smtpd[2525]: < ernie.bio2.RWTH-Aachen.DE[134.130.63.5]: UjZvYTBmSENUSlBvaA== Apr 20 18:34:57 bert postfix/smtpd[2525]: smtpd_sasl_authenticate: decoded response: $passwort Apr 20 18:34:57 bert postfix/smtpd[2525]: w...
2005 Jan 06
6
TDM4000P with 4 FXO's not picking up ringing lines
Ive just installed a TDM4000P with 4 fxos. The zaptel config is fine, zttest comes back with configured. If i call a line when zttest it shows on the display,and then goes when the line drops. In * when a call comes in, it follows my dialplan and answers the call according to the log, but IT DOESN'T actually pick up the call, i.e. it continues ringing. I'm using KS signalling, and
2003 Oct 21
4
interactive prompts
...he Enter key is pressed: print("Press any key to continue") system("read") 2. How do I get a string input from the user? Would like to see an R function, say askget(): delay = askget("Enter delay in seconds") system(paste( "sleep ", delay)) TIA, Ernie Adorio Math Department University of the Philippines Diliman, Quezon City
2012 Jul 08
2
Notation for previous observation in a data frame
I've created a data frame in R, but in order to clean up some of the data, I need to set certain variable observations equal to the value of their previous observation (it would be conditional, but that part's less important right now). In Stata, I would simply set var = var[_n-1] in those cases. What is the R equivalent? [[alternative HTML version deleted]]
2012 Dec 07
0
apply a function at: dateX, dateX+1, dateX+2, ....
...2 11:00"), Longitude=c(8.91617, 8.92700, 8.92711, 8.92722, 8.92733, 8.92744,8.92800, 8.92900, 8.93000 ), Latitude=c(54.5485, 54.5410, 54.5412, 54.5413, 54.5414, 54.5424,54.5500, 54.5600, 54.5700 ) , AnimalID= c(rep("Ernie"))) head(myframe) myframestime <- as.POSIXct (strptime(as.character(myframe$Timestamp), "%d.%m.%Y %H:%M"), tz="GMT") myframe2 <- cbind (myframe,myframestime) myframe2$Timestamp <- NULL myframesxy <- proje...
2011 Jan 16
1
Encoding vorbis with theora
...es are to be played. So, to me, it sounds like it shouldn't be very difficult to tell vorbis/theora when to play various audio cuts during play - which is why I've been pulling my hair out trying to dig through docs and forums in search of how to do this. Any help would be fantastic! -- -Ernie -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/theora/attachments/20110116/a1fab95a/attachment.htm