Slide 52
Slide 52 text
INVESTIGATE PESTICIDES (NOT PANDAS)
>>> common = set(pest_years).intersection(
>>> hiber_years)
>>>
>>> common
{1993.0, 1994.0, 1995.0, 1996.0, 1997.0,
1998.0, 1999.0, 2000.0, 2001.0, 2002.0,
2003.0, 2004.0, 2005.0, …, 2008.0}
>>> prows = pesticides.get_rows()
>>> hrows = hibernation.get_rows()
>>>
>>> X = [
>>> r[5].value for r in prows
>>> if r[0].value in common]