search for: bud

Displaying 20 results from an estimated 138 matches for "bud".

Did you mean: bsd
2017 Jun 20
2
Help with the plot function
Dear friends, I have the following dataframe: YEAR <- c(1996 , 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 ) T_MAR <- c(2.8, 6.5, 5.4,2.4, 4, 4.1, 3, 4.4, 4.5) T_APR <- c(5.7, 7.8, 7.7, 4.6, 4.7, 6.2,5.7, 5.9, 7) T_MAY <- c(7, 8.8, 10, 6, 5.5, 7.6, 8.5, 7.3, 10.2) BUD <- c(87, 98, 93, 85, 89, 91, 87, 92, 92) BUD_SE <- c(3.6, 2, 2.4, 4, 2.4, 2.4, 4, 2.4, 3) g1 <- data.frame(YEAR, T_MAR, T_APR, T_MAY, BUD, BUD_SE) ###PLOT dev.new(width=6.5, height=5) par (cex=1, family="sans", mar=c(5,5,5,5.5)) plot(T_MAR~YEAR, type="l", pch=19, ann=F...
2017 Jun 20
1
Help with the plot function
...vised (maybe there will be further improvements from the list): YEAR <- c(1996 , 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 ) T_MAR <- c(2.8, 6.5, 5.4,2.4, 4, 4.1, 3, 4.4, 4.5) T_APR <- c(5.7, 7.8, 7.7, 4.6, 4.7, 6.2,5.7, 5.9, 7) T_MAY <- c(7, 8.8, 10, 6, 5.5, 7.6, 8.5, 7.3, 10.2) BUD <- c(87, 98, 93, 85, 89, 91, 87, 92, 92) BUD_SE <- c(3.6, 2, 2.4, 4, 2.4, 2.4, 4, 2.4, 3) g1 <- data.frame(YEAR, T_MAR, T_APR, T_MAY, BUD, BUD_SE) par(mar=c(5,5,5,5)) plot(YEAR,T_MAR,pch=0,type="b",col="green",yaxt="n",ylim=c(-15,12),ylab="") lines(...
2017 Jun 20
2
Help with the plot function
I'm trying to recreate a graph similar to the last one found on this link: https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf The difference is that I want budbreak on the top, and the temperatures at the bottom. I tried to set par before each graph and include lines, with no avail. Thanks, Bert. Andre On Mon, Jun 19, 2017 at 7:41 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote: > See > > ?layout > ?split.screen > ?par (the mf...
2017 Jun 20
0
Help with the plot function
...gt; I have the following dataframe: > > YEAR <- c(1996 , 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 ) > T_MAR <- c(2.8, 6.5, 5.4,2.4, 4, 4.1, 3, 4.4, 4.5) > T_APR <- c(5.7, 7.8, 7.7, 4.6, 4.7, 6.2,5.7, 5.9, 7) > T_MAY <- c(7, 8.8, 10, 6, 5.5, 7.6, 8.5, 7.3, 10.2) > BUD <- c(87, 98, 93, 85, 89, 91, 87, 92, 92) > BUD_SE <- c(3.6, 2, 2.4, 4, 2.4, 2.4, 4, 2.4, 3) > g1 <- data.frame(YEAR, T_MAR, T_APR, T_MAY, BUD, BUD_SE) > > ###PLOT > dev.new(width=6.5, height=5) > par (cex=1, family="sans", mar=c(5,5,5,5.5)) > plot(T_MAR~YEAR,...
2017 Jun 20
2
Help with the plot function
...s <andrluis at ualberta.ca> > wrote: > > I'm trying to recreate a graph similar to the last one found on this > link: > > https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/ > 7362679/6c_-_line_plots_with_error_bars.pdf > > > > The difference is that I want budbreak on the top, and the temperatures > at > > the bottom. > > > > I tried to set par before each graph and include lines, with no avail. > > > > Thanks, Bert. > > > > Andre > > > > On Mon, Jun 19, 2017 at 7:41 PM, Bert Gunter <bgunter.456...
2017 Jun 20
0
Help with the plot function
Hi You are quite close. With slight modification of your code: par(mfrow = c(2, 1)) par(cex = 0.6) par(mar = c(0, 0, 0, 0), oma = c(4, 4, 0.5, 0.5)) par(tcl = -0.25) par(mgp = c(2, 0.6, 0)) plot(BUD~YEAR, type="o", ann=F, axes=F, pch=19, ylim=c(60,100),data=g1) axis(4, las=2) mtext("Bud Break (Julian Day)", side=4, padj=4) arrows(g1$YEAR,g1$BUD, g1$YEAR,g1$BUD + g1$BUD_SE, length=0.05, angle=90) arrows(g1$YEAR,g1$BUD, g1$YEAR,g1$BUD-g1$BUD_SE, length=0.05, angle=90) plot(T...
2011 Nov 08
1
passing dataframe col name through cbind()
...havior occurs, and how I can get all col names, including the first, passed on to the result?while I suspect it's obvious and documented to the cognoscenti, it's puzzling me? Many thanks for any help on this... Eric > scores <- data.frame(name=c("Bob","Ron","Bud"),round1=c(40,30,20),round2=c(5,6,4)) #some toy data > > scores name round1 round2 1 Bob 40 5 2 Ron 30 6 3 Bud 20 4 > > cbind(scores[,1],total=rowSums(scores[,2:3]),scores[,2:3]) scores[, 1] total round1 round2 1 Bob 45 40 5 2...
2017 Dec 26
2
Rscript fails with some packages (for example, h5)
Consider this script (with h5 installed): $ cat test.R library(h5) name <- tempfile() f <- h5file(name) file.remove(name) $ Rscript test.R Error in initialize(value, ...) : cannot use object of class "character" in new(): class "H5File" does not extend that class Calls: h5file -> new -> initialize -> initialize Execution halted $ /usr/lib64/R/bin/R --slave
2017 Jun 20
0
Help with the plot function
...19, 2017 at 7:01 PM, Andr? Luis Neves <andrluis at ualberta.ca> wrote: > I'm trying to recreate a graph similar to the last one found on this link: > https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf > > The difference is that I want budbreak on the top, and the temperatures at > the bottom. > > I tried to set par before each graph and include lines, with no avail. > > Thanks, Bert. > > Andre > > On Mon, Jun 19, 2017 at 7:41 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote: >> >> See &g...
2007 Jun 08
13
Errror on update after Model.rebuild_index
Hi I use Ferret 0.11.4 and the latest stabel version of the acts_as_ferret plugin. To the issue. if I do Model.rebuild_index and after that try to update one of my objects of that Model I get: File Not Found Error occured at <except.c>:117 in xpop_context Error occured in fs_store.c:329 - fs_open_input tried to open
2017 Dec 26
0
Rscript fails with some packages (for example, h5)
...KAGES is equivalent to | setting it to a magic value, it's really confusing. I suggest remove this | feature. The more confusing part is that "methods" is missing 'by design' (as loading methods is marginally more expensive that other packages). Ie for your script edd at bud:/tmp$ cat h5ex.R library(methods) library(h5) name <- tempfile() f <- h5file(name) file.remove(name) edd at bud:/tmp$ Rscript h5ex.R [1] TRUE edd at bud:/tmp$ it all works if you just add `library(methods)` as seen in the first line. For what it is worth, littler...
2007 Oct 08
0
Facebook app give feedback -Send birthday cards to buds http://apps.facebook.com/groupcards/start
Facebook app give feedback -Send birthday cards to buds http://apps.facebook.com/groupcards/start --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gma...
2017 Dec 26
2
Rscript fails with some packages (for example, h5)
...gic value, it's really confusing. I suggest remove > this > | feature. > > The more confusing part is that "methods" is missing 'by design' (as > loading > methods is marginally more expensive that other packages). Ie for your > script > > edd at bud:/tmp$ cat h5ex.R > library(methods) > library(h5) > name <- tempfile() > f <- h5file(name) > file.remove(name) > edd at bud:/tmp$ Rscript h5ex.R > [1] TRUE > edd at bud:/tmp$ > > it all works if you just add `library(methods)` as seen in t...
2006 Jan 16
2
Agents getting logged off agressively
...s in, they are getting logged out too. The phones are ATA's connected via SIP. One thought is that the phones may be allowing a second call so they really don't look busy and that's why they get logged out. Anyway, is there a way to prevent busy agents from getting logged out? -- Bud -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060116/2f6cdfe7/attachment.htm
2007 Jun 04
5
Sorting and getting occurrences of search in hit
Is there any way you could get the number of occurrences of the search in one hit? In a result I get the ferret_rank and ferret_score but not how many hits the search generated in the current record. I would also like to be able to sort after this when I search. /mattias -- Posted via http://www.ruby-forum.com/.
2017 Dec 01
3
undefined symbol: sgemv_thread_n
Hello, the following is a part of a question asked on R-help. I realized that it is better suited for asking here. Apologies for the cross-posting! I'm on Ubuntu artful, and upgraded with 'apt'. Then ---------------------------------------------------------------- goran at M6800:~/src/R-3.4.3$ /usr/bin/R /usr/lib/R/bin/exec/R: symbol lookup error:
2006 Jan 12
4
How do you create a tree strucutre with ActiveRecord
...administrative privleges, the user would be able to edit the user accounts for other users in there domain, but not users in other domains. So, Derek Jeter would be a user in the Yankees domain, George Steinbrenner and admin user in the Yankees domain, David Ortiz a user in the Red Sox domain, and Bud Selig an admin user in the MLB domain. Since Ortiz and Jeter are just non-admin users, they can''t edit any other user accounts. Since steinbrenner is ad admin user in the Yankees domain, he can edit Jeter''s account, but not Ortiz''s, because Ortiz is not in Steinbrenner&...
2008 Nov 19
4
Role of asterisk
Hello list, When you have an asterisk box connected between the VoIP phones and an PSTN gateway what is the role of asterisk. Proxy server: stateful or stateless? From what i read in the: "Understanding the SIP, second edition" from Alan B. Johnston i think that asterisk is a stateful proxy server as well as registration server. Am I right? Can asterisk be configured to work as
2002 Dec 08
2
Warning: as.numeric reorders factor data
...rikes me that as.numeric should *never* reorder the vector it is working on. There is this workaround for the problem: > as.numeric(as.character(test)) [1] 1 2 3 4 5 6 7 8 9 10 11 However, I should not have to know about the internals of aggregate to be able to use its results. Bud Gibson
2013 Dec 10
4
OT: Large corporate email systems - Exchange vs open source *nix based
Hello, There has been some whispers about considering migrating our mail systems to Exchange Server. I want to try to nip this in the bud. I would like to ask for some help with providing some kind of comparison of large(r) commercial companies use of email systems... specifically, those using Microsoft Exchange Server, vs those using open source Linux/Unix based systems, including even commercial *nix groupware based systems li...