search for: omnivor

Displaying 7 results from an estimated 7 matches for "omnivor".

Did you mean: omnivore
2009 Feb 11
2
problem with 'which' and strings
...quot;Darter" [4] "DomTwoPct" "FishDELTPct" "Minnows-Tolerant" [7] "NumberPer100m-Tolerant" "Sensitive" "SLithopPct" [10] "TolerantPct" "Omnivore" "PiscivorePct" [13] "Headwater-Tolerant" "Insect-Tolerant" "Wetland-Tolerant" [16] "Piscivore" "DarterSculpNot" "OmnivorePct" [19] "SlithopPct&q...
2010 Dec 14
0
GLM with different factors
...f anybody could have with this. My data set looks like: Squares Hours SppRichness Feeding_guild natprop 1 10 1 aq inverts 0.118697 2 25 2 aq inverts 0.605874 3 35 2 fish 0.61255 4 20 4 fish 0.764418 5 40 3 insects 0.810646 6 20 2 insects 0.832063 7 20 2 Omnivores 0.838509 n 20 3 Omnivores 0.839228 My interest is to run a GLM model between the response variable y = SppRichness (species richness) and y = natprop )Proportion of Natural Area considering each Feeding Guild (factor) separately. In other words I want to run with one single code the richn...
2013 Jan 12
1
panel failure in xyplot
...o modify the code. thank you. (It works with panel.bwplot.intermediate.hh) Elaine code library(HH) # data input dataN <-read.csv("H:/R_data/Mig_bird_586.csv",header=T, row.names=1) dim(dataN) dataN[1,] str(dataN) diet.code <- c("Herbivore", "Omnivore", "Carnivore") Diet.colors <- c("forestgreen", "darkblue","red2") levels(dataN$Diet) <- diet.code # graph par(mai=c(1.03,1.03,0.4,0.4)) par(new=T) xyplot(GE_distance~Diet, data=dataN, xlab=list("Diet of Breeding...
2013 Jan 12
1
color in xyplot
...Its dots will have three colors: red for meat, green for vegetable, and blue for both. I used the code below but could not make the dot in the same group show the same color. Please kindly advise how to modify it. Thank you. code library (lattice) diet.code <- c("Herbivore", "Omnivore", "Carnivore") Diet.colors <- c("forestgreen", "darkblue","red2") levels(dataN$Diet) <- diet.code # graph par(mai=c(1.03,1.03,0.4,0.4)) par(new=T) xyplot(GE_distance~Diet, data=dataN, xlab=list("Diet of Breeding...
2012 Jun 22
6
Definition list as image caption
recently though about image captions, then i realized that this could be achiebed by Markdown Extra's definition list feature: ![alttext](http://exampl.com/img.jpg) : here goes the *caption* What do you think? -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Sep 28
2
changing outlier shapes of boxplots using lattice
Hello This is Elaine. I am using package lattice to generate boxplots. Using Richard's code, the display was almost perfect except the outlier shape. Based on the following code, the outliers are vertical lines. However, I want the outliers to be empty circles. Please kindly help how to modify the code to change the outlier shapes. Thank you. code package (lattice) dataN <-
2006 Jun 30
1
getting form values using link_to_remote
I have this as part of an .rhtml page: <%= javascript_include_tag "prototype" %> <%= form_tag :controller => ''reallist'', :action => ''addnewuser''%> email:<br /> <%= text_field_tag :email, nil, :size => ''14'' %><br /> <div id=''nameStatus''> </div> <%=