search for: herb

Displaying 20 results from an estimated 273 matches for "herb".

Did you mean: her
2006 Nov 20
1
sem package subscript out of bounds error
...d this with all sorts of subsets of the model, making sure to keep all of the proper error terms. --- fish.invert.data<-data.frame(Prev.Year.Predatory.Invert.Abundance, Prev.Year.Predatory.Fish.Abundance, Predatory.Invert.Abundance, Predatory.Fish.Abundance, Prev.Year.Herbivorous.Invert.Abundance, Prev.Year.Herbivorous.Fish.Abundance, Herbivorous.Invert.Abundance, Herbivorous.Fish.Abundance, Kelp.Abundance, Prev.Year.Kelp.Abundance, Mean.Temp.C, Prev.Year.Herbivore.Abundance) #na.rm=TRUE to deal with a few rows of missing d...
2011 Mar 29
2
List extraction
I have created a list of tables with the same columns but different number of row. Example (actual list has ~200 elements): > temp1<- data.frame(ID=c("Herb","Shrub"),stat=c(4,5),pvalue=c(.03,.04)) > temp2<- data.frame(ID=c("Herb","Shrub", > "Tree"),stat=c(12,15,13),pvalue=c(.2,0.4,.3)) > L<-list(a=temp1,b=temp2) > L $a ID stat pvalue 1 Herb 4 0.03 2 Shrub 5 0.04 $b...
2010 Jan 27
2
using functions with multiple arguments in the "apply" family
typically, the apply family wants you to use vectors to run functions on. However, I have a function, kruskal.test, that requires 2 arguments. kruskal.test(Herb.df$Score,Herb.df$Year) This easily computes the KW ANOVA statistic for any difference across years.... However, my data has multiple sites on which KW needs to be run... here's the data: Herb.df<- data.frame(Score=rep(c(2,4,6,6,6,5,7,8,6,9),2),Year=rep(c(rep(1,5),rep(2,5)),2),Site=c(rep(...
2009 Jun 04
3
Plot and lm
...a)) or plot(mass,area, log="xy", pch=as.numeric(food)) islands$logmass <- log(mass) islands$logarea <- log(area) attach(islands) abline(lm(logmass~logarea)) But that does not show a line. Where am I going wrong? data: island, area,species,food,mass Ibiza , 577 , Anser n. sp., herb, 2.0 Ibiza , 577 , Haliaeetus albicilla, carn, 4.8 Mauritius , 1874 , Raphus cucullatus, herb, 19 Mauritius , 1874 , Circus alphonsi, carn, 0.63 Mallorca , 3667 , Myotragus balearicus, herb, 40 Mallorca , 3667 , Aquila chrysaetos, carn, 4.2 Kreta , 8259 , Elephas creutzburgi, herb, 3200...
2006 Oct 12
3
Extrapolated regression lines
Dear list members, When I create a simple scatterplot with a regression line (se below) the line is automatically extrapolated outside the range of data points. Why is this and how can I prevent R from extrapolating the regression line? Thank you in advance, Johan model<-lm(Herb~Para) plot(Para,Herb) abline(model)
2007 Sep 29
1
templates with same name before extension are cached
Hi all, I was just wondering if this is the intended behavior. Here is my setup: controller def index respond_to do |f| f.xml { render :xml => true } f.html { render :layout => :none } end end In my views I have a file for each type index.herb index.xerb The first request I send is cached and interferes with the other one. For example, if I send an xml request first, followed by html, here is what I see (those are just some debug statements I put in to follow the code) Request 1 "Accept: text/xml" - "starting find_templ...
2010 Feb 24
1
extracting results from wilcox_test (package::coin)
Recently, I ran a series of Kruskal-Wallace tests [kruskal.test()] using by() to group by site Output is a list: >Herb.KW Herb.df$ID: 10-1 Kruskal-Wallis rank sum test data: Indicator_Rating by Year Kruskal-Wallis chi-squared = 15.24, df = 7, p-value = 0.03302 ----------------------------------------------------------------------------------------------------- Herb.df$ID: 18-1 Kruskal-Wallis r...
2008 Jun 03
0
Summarizing dummy coefficients in sem package
...Here is my model ('sex' and 'trt' are the nominal variables with 2 and 4 levels, respectively) followed by the relevant output: Path Parameter 1 sexMale->nect sexnect 2 sexMale->cono sexcono 3 sexMale->herb sexherb 4 sexMale->para sexpara 5 trtControl->nect trtContnect 6 trtControl->cono trtContcono 7 trtControl->herb trtContherb 8 trtControl->para trtContpara 9 trtNoFemale->nect trtNo...
2002 May 16
7
Name Resolution, Pinging
I am running redhat 7.3 with Samba 2.2.4. I was wondering if there was a way to use Samba to resolve my IPs instead of having to add all the entries to my /etc/hosts file? For instance, I would like to be able to do `ping acormany` instead of `ping <IP Address>`. We are currently using WINS on a Windows box to resolve the IPs. As of right now, I can `ping acormany` on a Windows system, but
2010 Nov 09
2
new column from column in another df
...vulgaris,1 Calluna vulgaris,2 Betula alba,1 Betula alba,2 Betula alba,3 Primula veris,1 Primula veris,2 and another df where each species only have one row: species,growth_form Populus tremula,tree Acer platanoides,tree Ribes rubrum,shrub Calluna vulgaris,dwarf_shrub Betula alba,tree Primula veris,herb ...how can I create a new column in the first data frame where growth form is picked up from the second data frame (also factors) and entered into all rows for a species as follows: species,phase,growth_form Populus tremula,1,tree Populus tremula,2,tree Populus tremula,3,tree Calluna vulgaris,1,dw...
1998 Mar 25
3
What shares are mounted on client ?
Is there anyway to ascertain what shares a client actually has mounted at a given time? I've got a number of WFW boxes connecting shared drives on my SCO-OSE3 box using SAMBA 1.9.16p5 (upgrading to latest version RSN). I've got some shell scripts on the Unix box which use escape sequences sent to the client telnet to start programs on the client side. Some of these programs assume
2008 Sep 24
1
qplot, stacked area, own colourscheme
...quot; mydata <- (sqlQuery(channel, sql)) What I get is the following dataframe (simplified, there are more categories, not real data): trial cover_of dateofsurvey cover 1 ZU-316 Cover dead material 2004-09-16 0 2 ZU-316 Cover grasses 2004-09-16 16 3 ZU-316 Cover herbs 2004-09-16 14 4 ZU-316 Cover legumes 2004-09-16 10 5 ZU-316 Cover open soil 2004-09-16 30 6 ZU-316 Cover dead material 2005-09-18 5 7 ZU-316 Cover grasses 2005-09-18 26 8 ZU-316 Cover herbs 2005-09-18 14 9 ZU-316 Cover legumes 2005-09-18...
2019 Aug 18
0
Newly Legalized Herb Relieves Pain in Seniors!
<P align=center><STRONG><FONT size=4><A href="https://aaas3lk.s3.us-east-2.amazonaws.com/ome12.html">Newly Legalized ?Herb? Relieves Pain in Seniors!</A></FONT></STRONG></P> <P align=center><A href="https://aaas3lk.s3.us-east-2.amazonaws.com/ome12.html"><IMG border=0 hspace=0 alt="" src="https://aaas3lk.s3.us-east-2.amazonaws.com/ome.jpg" align=baseli...
2010 Feb 18
2
Extracting values from a list
I have run a kruskal.test() using the by() function, which returns a list of results like the following (subset of results): Herb.df$ID: 4-2 Kruskal-Wallis chi-squared = 18.93, df = 7, p-value = 0.00841 -------------------------------------------------------------------- Herb.df$ID: 44-1 Kruskal-Wallis chi-squared = 4.43, df = 6, p-value = 0.6187 So then, how do extract a vector of p-values (i.e., result$p.va...
2002 Dec 11
3
2 gigabyte issue
I am running RedHat8, samba 2.2.7 The mailing list archives seem to pin the 2gb problem on several unrelated issues (all of which i explored). The machines in question have no problems creating 2+gb files locally and via NFS. Is this an issue with smbfs? smbmount? anyone have a workaround? -- 'As we enjoy great Advantages from the Inventions of others we should be glad of an Opportunity
2002 Feb 15
3
Samba Team? - "ld.so.1: ls: fatal: relocation error: file /usr/lib/nss_winbind.so.1: symbol socket: referenced symbol not foun d"
...ts in the order listed in nsswitch.conf. Since there is no listing with winbind off, the system just displays the user ID as if the user who created the file had been deleted. I think UNIX is having trouble reading the user/group information from winbind. -Dan -----Original Message----- From: Herb Lewis [mailto:herb@sgi.com] Sent: Friday, February 15, 2002 1:06 PM To: Thomas, Daniel J. Cc: Samba (E-mail) Subject: Re: [Samba] "ld.so.1: ls: fatal: relocation error: file /usr/lib/nss_winbind.so.1: symbol socket: referenced symbol not found" - Samba Team? "Thomas, Daniel J.&quot...
2002 Feb 15
2
Samba Team? - "ld.so.1: ls: fatal: relocation error: file /usr/lib/nss_winbind.so.1: symbol socket: referenced symbol not fou n d"
...is installed right. I can't tell if winbind is running right, or if it authenticated wit the PDC. The above tests will answer those questions. Hope this helps. -----Original Message----- From: Thomas, Daniel J. [mailto:Daniel.Thomas@jhuapl.edu] Sent: Friday, February 15, 2002 2:46 PM To: 'Herb Lewis'; Thomas, Daniel J. Cc: Samba (E-mail); 'samba-technical@lists.samba.org' Subject: RE: [Samba] Samba Team? - "ld.so.1: ls: fatal: relocation error: file /usr/lib/nss_winbind.so.1: symbol socket: referenced symbol not foun d" I've recompiled samba 2.2.3a and still...
2017 Dec 18
2
Gluster consulting
Yeah, unfortunately that's all that have come forward as available. I think the demand for gluster expertise is just so high and the pool of experts so low that there's nobody left to do consulting work. On 12/18/2017 12:04 PM, Herb Burnswell wrote: > Hi, > > Sorry, I just saw the post > <http://lists.gluster.org/pipermail/gluster-users/2017-December/033053.html> > from last week > > I have seen this page <https://www.gluster.org/support/> before, > however other than Red Hat (who I'v...
2002 Sep 14
3
printing in dos slows
Hi, I have an issue in dos printing. My okidata dot matrix printer is directly connected to linux box and is a shared printer in samba . I am using lprng. My problem is with dos printing. When i print, it spools first indicated in the windows printer window. It takes a minute before it actually sends to the linux box, you will see an indicator of spooled bytes. Once it is submitted it prints
1999 Nov 05
2
Authentication on Linux6.0 that running samba-2.0.3
Hello All, I am using Linux6.0(running samba) as a file server on my network, everything is good when I configure samba authenticate on other machine such as WinNT4.0. But when I have configured samba authenticate on itself (security = user) I received message error "smbd/password.c:pass_check_smb(506) Account for user 'david' was disabled". In this mode I created