<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
   <channel>
      <title>The Echinacea Project Field Log</title>
      <link>http://blog.lib.umn.edu/wage0005/echinacea/</link>
      <description>Investigating ecology and evolution in fragmented prairie habitat since 1995. This field log documents our research projects, observations, and experiences. For more information, visit  our website.</description>
      <language>en</language>
      <copyright>Copyright 2011</copyright>
      <lastBuildDate>Mon, 20 Jun 2011 21:10:55 -0600</lastBuildDate>
      <generator>http://www.sixapart.com/movabletype/?v=4.31-en</generator>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs> 

      
      <item>
	
         <title>Nicholas Goldsmith&apos;s Project Proposal</title>
         <description><![CDATA[<p><a href="http://blog.lib.umn.edu/wage0005/echinacea/EchProject_Proposal_NG2011_21June2011.pdf">Attached my summer project proposal in pdf format</a></p>]]></description>
         <link>http://blog.lib.umn.edu/wage0005/echinacea/2011/06/nicholas-goldsmiths-project-pr.html</link>
         <guid>http://blog.lib.umn.edu/wage0005/echinacea/2011/06/nicholas-goldsmiths-project-pr.html</guid>
         <category>Pollen Interference 2009</category>
         <pubDate>Mon, 20 Jun 2011 21:10:55 -0600</pubDate>
      </item>
      
      <item>
	
         <title>Halverson Data, Head harvesting, and Landfill species list (in progress)</title>
         <description><![CDATA[<p><strong>DATA</strong></p>

<p>Here is a copy of my excel file with all my data.  The sheet labeled corrected data for analysis is the file with all the data for each treatment.  The sheet labeled baggins has a list of all the heads I used that need to be harvested, this was also posted in a separate post called "Baggins."  The ones labeled "donor" do not need to be harvested but should not be expected to have high seed set as they were bagged for most of their flowering time.</p>

<p><span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/Pollination%20interference%20data%20%28data%20entry%202%29.xls">Pollination interference data (data entry 2).xls</a></span><br />
<strong><br />
HARVESTING</strong></p>

<p>I need all of the heads used in my project (the ones that are painted) to be harvested in egg cartons (located in the shelf above the sink in the Hjelm house).  Please label the compartment of the egg carton with the row, pos and tt color of the head.  The egg cartons should be packed so that they wont be disturbed during travel and please be careful with the heads so no seeds fall out!  Gretel has a list of all the heads to be harvested and its posted on the flog in July ("Baggins").  Please mail the packaged heads to:  119 School Street, Keene, NH 03431</p>

<p><strong>LANDFILL SPECIES</strong></p>

<p>I have been collecting plants at Landfill this season and have started to compile a list of the plants I have either seen or collected there.  If Megan and anyone else would like to add plants to that list that would be great!  Or check my identification.  This list is very rough at the moment but I will continue to update it as I get more plants identified.</p>

<p><span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/Species%20list%20landfill%202009.xls">Species list landfill 2009.xls</a></span></p>]]></description>
         <link>http://blog.lib.umn.edu/wage0005/echinacea/2009/08/halverson-data-head-harvesting.html</link>
         <guid>http://blog.lib.umn.edu/wage0005/echinacea/2009/08/halverson-data-head-harvesting.html</guid>
         <category>Pollen Interference 2009</category>
         <pubDate>Thu, 20 Aug 2009 11:09:22 -0600</pubDate>
      </item>
      
      <item>
	
         <title>Allegra&apos;s pollination data .csv file</title>
         <description><![CDATA[<p>Here is my dataset that I am working on analyzing in R as a .csv file.  </p>

<p><span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/halverson.data.091.csv">halverson.data.091.csv</a></span></p>

<p>Stuart, here is my R script so far:</p>

<p><span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/halverson.data.analysis1.R">halverson.data.analysis1.R</a></span></p>

<p>I made new columns in the .csv spreadsheet for the factors and levels we discussed.  I will work on a list of hypotheses to test.  I think I changed the definition of "y" when I did my 24 hour analysis.  Can I give "y" a different name for each analysis?  Or does the code need to read a defined "y" each time?</p>

<p>Thanks for the help and check out the graph of 24 hours and the summary m2.  </p>

<p>Allegra</p>]]></description>
         <link>http://blog.lib.umn.edu/wage0005/echinacea/2009/08/allegras-pollination-data-csv.html</link>
         <guid>http://blog.lib.umn.edu/wage0005/echinacea/2009/08/allegras-pollination-data-csv.html</guid>
         <category>Pollen Interference 2009</category>
         <pubDate>Fri, 14 Aug 2009 16:36:15 -0600</pubDate>
      </item>
      
      <item>
	
         <title>shrivel data</title>
         <description><![CDATA[Here's a snippet of R code showing how to extract info from the shrivel character data (a file is below...<pre>df <- data.frame(shrivel.txt =c("x", "xoxx", "xxxx", "oooo", "xoooo"))
df      # start off with this data frame
str(df)

df$shrivel.count <- nchar(as.character(df$shrivel.txt)) #add column

vx <- gsub("o", "", df$shrivel.txt)  # replace o with ""
vx
df$shrivel.xs <- nchar(vx)           # make a new column in df

vo <- gsub("x", "", df$shrivel.txt)  # replace x with ""
vo
df$shrivel.os <- nchar(vo)           # make a new column in df

str(df)
df      # final data frame
</pre>


<span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/codeForAllegra.r">codeForAllegra.r</a></span> ]]></description>
         <link>http://blog.lib.umn.edu/wage0005/echinacea/2009/08/shrivel-data.html</link>
         <guid>http://blog.lib.umn.edu/wage0005/echinacea/2009/08/shrivel-data.html</guid>
         <category>Pollen Interference 2009</category>
         <pubDate>Tue, 04 Aug 2009 11:45:40 -0600</pubDate>
      </item>
      
      <item>
	<enclosure url="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300574-thumb-320x426-8592.jpg" length="74253" type="image/jpeg" /><enclosure url="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300576-thumb-320x240-8609.jpg" length="39539" type="image/jpeg" /><enclosure url="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300578-thumb-320x240-8613.jpg" length="36266" type="image/jpeg" /><enclosure url="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300584-thumb-320x240-8618.jpg" length="49486" type="image/jpeg" />
         <title>Pressed plants and painted bracts</title>
         <description><![CDATA[<p>Here's a photo of the box I built for drying plants with generously donated materials from the Wagenius family.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300574-8592.html" onclick="window.open('http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300574-8592.html','popup','width=2448,height=3264,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300574-thumb-320x426-8592.jpg" width="320" height="426" alt="" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></span></p>

<p>A pressed specimen of <em>Anemone canadensis</em> collected at Hegg Lake with Greg.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300576-8609.html" onclick="window.open('http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300576-8609.html','popup','width=3264,height=2448,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300576-thumb-320x240-8609.jpg" width="320" height="240" alt="P7300576.JPG" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></span></p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300578-8613.html" onclick="window.open('http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300578-8613.html','popup','width=3264,height=2448,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300578-thumb-320x240-8613.jpg" width="320" height="240" alt="P7300578.JPG" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></span></p>

<p>One of my painted heads after being repainted this week.  Each paint color identifies a pollen treatment.  </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300584-8618.html" onclick="window.open('http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300584-8618.html','popup','width=3264,height=2448,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://blog.lib.umn.edu/wage0005/echinacea/assets_c/2009/08/P7300584-thumb-320x240-8618.jpg" width="320" height="240" alt="P7300584.JPG" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></span></p>

<p>Thanks to Mimi for letting me use her camera!</p>]]></description>
         <link>http://blog.lib.umn.edu/wage0005/echinacea/2009/07/pressed-plants-and-painted-bra.html</link>
         <guid>http://blog.lib.umn.edu/wage0005/echinacea/2009/07/pressed-plants-and-painted-bra.html</guid>
         <category>Pollen Interference 2009</category>
         <pubDate>Thu, 30 Jul 2009 22:35:38 -0600</pubDate>
      </item>
      
      <item>
	
         <title>Baggins</title>
         <description><![CDATA[<p>Here is a list of the plants I used in the common garden for my experiment on pollen interference/competition.  I used 20 randomly selected plants in the 96 garden with 12 pollination treatments on each plant.  The heads I harvested are also included in this spreadsheet, but here they are again: 39 952 blu and wht heads were harvested on 7/24/09.  </p>

<p><span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/Baggins.CG.09.xls">Baggins.CG.09.xls</a></span></p>

<p>The preliminary results seem to show that the only treatments that consistently did <strong>not</strong> shrivel were: <br />
silver-the control, no pollinations<br />
white-Carduus acanthoides pollen only (thistle)<br />
pink-Coreopsis palmata pollen only</p>

<p>All of the treatments that received echinacea pollen (either am or pm) showed somewhat consistent shriveling.... will it hold up to the stats.... we will see!</p>

<p>the most interesting treatment is..... <br />
purple-Heliopsis helianthoides pollen only- this one had a mix of results, which may be due to differences in the amount of pollen arriving on the styles or some other factor.  but it certainly did not show consistent style persistence. hmmmmm.....</p>

<p>Just as a reminder, style shriveling indicates that compatible Echinacea pollen has arrived on a style, and can be a good predictor of seed set.  Style persistence indicates that compatible pollen has not landed on a style.  In the case of some of my treatments which had both Echinacea pollen and another type of pollen, shriveling may not indicate seed set.  This will be tested by dissecting the heads and weighing the seeds later this year.</p>

<p>More results to come soon...</p>]]></description>
         <link>http://blog.lib.umn.edu/wage0005/echinacea/2009/07/baggins.html</link>
         <guid>http://blog.lib.umn.edu/wage0005/echinacea/2009/07/baggins.html</guid>
         <category>Pollen Interference 2009</category>
         <pubDate>Wed, 29 Jul 2009 21:41:01 -0600</pubDate>
      </item>
      
      <item>
	
         <title>I need helpers for my project too!</title>
         <description><![CDATA[<p>Stuart, here are the estimates of people hours I will need for my project.  Also, a schedule of times when I would need helpers during this week.  Who wants to trade some hours?</p>

<p>Monday I would ideally like to paint and count styles for up to 80 treatments which I estimate will take 9-10 people hours (depending on how many need to be trained).  I would like to do it after phenology or at least do the style persistence before lunch, painting can happen later.  Wednesday and Thursday also follow the same schedule.  </p>

<p>But... this would mean a big pollination day on Tuesday, when everyone is out in the remnants.  Pollination takes about the same amount of time.  So Mimi and I have come up with several possible solutions (or a combination):<br />
- If Ruth will be here Tues. morning she could help collecting insects and someone else could help pollinate<br />
- Cut the remnants down to 9 instead of 10<br />
- Have some people in smaller remnants leave a little earlier than 11am, or have vehicles and be able to book it back at 11 to help pollinate from 11-12<br />
- Cut down the treatments painted on Monday, however I don't want to cut down too much, since some of my plants have been flowering since Thursday or Friday and I don't want to wait too long<br />
- Skip painting on Monday, paint Tuesday and Thursday, and pollinate Wed. and Friday when we have more people to spare</p>

<p>- I would also like help collecting pollen on Tues. and Wed. but I may be able to do this myself if needed.<br />
- lastly, I need one person to help me do afternoon pollination on Tuesday and Thursday between 2-4pm</p>

<p>Sorry for throwing this into the mix so late in the game folks.  I guess it was just hard to know how many hours and people I would need before we did a full day of painting and pollinating.  </p>

<p>-Allegra</p>]]></description>
         <link>http://blog.lib.umn.edu/wage0005/echinacea/2009/07/i-need-helpers-for-my-project.html</link>
         <guid>http://blog.lib.umn.edu/wage0005/echinacea/2009/07/i-need-helpers-for-my-project.html</guid>
         <category>Pollen Interference 2009</category>
         <pubDate>Sun, 05 Jul 2009 20:55:49 -0600</pubDate>
      </item>
      
      <item>
	
         <title>Bike gang and project progress</title>
         <description><![CDATA[<p>My project is almost ready to start this week!  </p>

<p>I will be hand pollinating heads on 20 flowering plants in the '96 section of the CG with different species of foreign pollen and Echinacea pollen to simulate pollen loads arriving from generalist pollinators.  The Echinacea pollen will be applied at the same time as the foreign pollen, 4 hours after, or not at all depending on the treatment.  I should start painting bracts for the first flowers in the next couple of days.  After discussing the pros and cons of different pollinator exclusion methods, I have decided I will use bags for the 20 plants in my study, and cages for the plants I will be taking pollen from frequently.  All my plants now have blue flags in the CG.  Ruth brought new paint for us to use, including a lovely new dark purple color.  Thanks Ruth!  </p>

<p>I have also decided to use 3 different foreign pollen donors and no mixes for my treatments.  After some practicing collecting pollen from different species at the Landfill, here are the best species I have come up with that have easy to collect pollen:<br />
Lead plant-Amorpha canescens-Fabaceae<br />
False sunflower-Heliopsis helianthoides-Asteraceae<br />
These are both common in the remnants and co-flower with Echinacea, hopefully sharing pollinators.  </p>

<p>Other possibilities:<br />
Coreopsis palmata-Asteraceae<br />
Thistle-whichever is in flower?-Asteraceae<br />
Prairie anemone-Anomone sp.-Ranunculaceae</p>

<p>Also, the bike gang is now 7 deep, so K-town betta watchout!  </p>

<p>Allegra</p>]]></description>
         <link>http://blog.lib.umn.edu/wage0005/echinacea/2009/06/bike-gang-and-project-progress.html</link>
         <guid>http://blog.lib.umn.edu/wage0005/echinacea/2009/06/bike-gang-and-project-progress.html</guid>
         <category>Pollen Interference 2009</category>
         <pubDate>Tue, 30 Jun 2009 21:00:30 -0600</pubDate>
      </item>
      
      <item>
	
         <title>Allegra&apos;s options</title>
         <description><![CDATA[<p>Here's a <span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/allegrasOptions.csv">file</a></span> with plants that Allegra can use for her pollen interference/precedence experiment. These are all plants identified yesterday as going to flower in 2009. Plants are sorted according to priority order--random, except that plants from site of origin "Unknown" are given priority 1.</p>

<p>I recommend going down the list and excluding all plants that don't have at least two <i>promising</i> heads. Flag all included plants with labels 1, 2, 3, .... Stop when you have enough for your experiment. Ask Gretel which color flag to use. Blue is an option because your plants are in CG96 and Andrea's are in CG97.</p>]]></description>
         <link>http://blog.lib.umn.edu/wage0005/echinacea/2009/06/allegras-options.html</link>
         <guid>http://blog.lib.umn.edu/wage0005/echinacea/2009/06/allegras-options.html</guid>
         <category>Pollen Interference 2009</category>
         <pubDate>Tue, 30 Jun 2009 12:27:19 -0600</pubDate>
      </item>
      
      <item>
	
         <title>First week, seedling search procedures, and project proposal</title>
         <description><![CDATA[<p>My name is Allegra Halverson and I am from New Hampshire.  I am an undergraduate student in Botanical Science at McGill University in Montreal, and a recent addition to Team Echinacea.   Lots of things happened this week, so here are a few highlights:</p>

<p>We moved into the old town hall and I've been loving the bike ride to the farm in the mornings so everyone with access to a bike should bring it!  </p>

<p>I saw a garter snake, two frogs, two deer, ground squirrels, a wild turkey and lots of birds.</p>

<p>Gretel and I selfed Megan J's prairie turnip plants at the landfill site on Wednesday.  We also helped Andrea put out flags and fungal traps in the CG for her mycorrhizae project. </p>

<p>I started my plant collection at the landfill and common garden with 15 plants so far.  I have to make a plant collection for a class next winter and will also make one for the Echinacea project at the same time to help future newbies with plant identification.</p>

<p>During this first week we received a lot of background information on the project and began the planning stages of our own projects related to the larger questions about Echinacea in the fragmented prairie habitat.  Several projects surrounding the question of competition for pollinators were chosen along with pollen identification projects and one project about the aphids.  My project will focus on how inter-specific pollen landing on Echinacea flowers effects style persistence.  <span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blog.lib.umn.edu/wage0005/echinacea/pollen%20competition%20proposal.doc">pollen competition proposal.doc</a></span></p>

<p>We developed a new key for the labeling seedling search maps:<br />
-each plant in the circle has a dot with line drawn to the center and the distance (cm) to the focal plant written on the line</p>

<p>s with a circle around it: a seedling<br />
B with a circle around it: a basal plant, not flowering<br />
* with a circle around it: a flowering plant, should have a metal tag like this 7819.2 (.2 is the number of flowering heads)<br />
N with a circle around it: a nail with a metal tag on it</p>

<p>any plot with a plant found in it, other than the focal plant, had a map made for it.<br />
any plot with a seedling found in it was photographed and a pencil marker with a letter (for basal or seedlings) or number (for numbered plants) was placed 2 cm west of all plants <br />
a toothpick was placed 5 cm from the seedling towards the focal plant</p>

<p>am i missing anything?<br />
</p>]]></description>
         <link>http://blog.lib.umn.edu/wage0005/echinacea/2009/06/first-week-seedling-search-pro.html</link>
         <guid>http://blog.lib.umn.edu/wage0005/echinacea/2009/06/first-week-seedling-search-pro.html</guid>
         <category>Pollen Interference 2009</category>
         <pubDate>Fri, 19 Jun 2009 17:07:43 -0600</pubDate>
      </item>
      
   </channel>
</rss>
