Archives
- November 2018 (1)
- February 2018 (1)
- March 2017 (1)
- February 2017 (1)
- September 2016 (1)
- August 2016 (1)
- July 2016 (1)
- April 2016 (1)
- March 2016 (1)
- February 2016 (2)
- January 2016 (3)
- November 2015 (3)
- October 2015 (4)
- September 2015 (5)
- August 2015 (11)
- July 2015 (1)
- April 2015 (2)
- March 2015 (4)
- February 2015 (1)
- July 2014 (3)
- January 2014 (16)
- December 2013 (3)
- November 2013 (9)
- October 2013 (22)
- September 2013 (19)
- July 2013 (1)
- June 2013 (3)
- May 2013 (7)
- April 2013 (5)
- January 2013 (1)
- August 2012 (1)
- July 2012 (1)
Monthly Archives: September 2013
Python Variable Names
I learned today that in Python, variable names cannot start with a number. For example, this is an incorrect variable name: 1_AA_aa This could be used instead: AA_aa1 http://en.wikibooks.org/wiki/Python_Beginner_to_Expert/Native_Types
Posted in Python
Leave a comment
Jan. 10 Wiki competition for Computational Biology articles
Posted in Articles, Computational Biology
Leave a comment
Maximum Value in Subset
What was the maximum ozone value in the month of May (i.e. Month = 5)? Google “R subset data maximum value”: [1] http://stackoverflow.com/questions/12350783/find-max-mean-min-of-the-a-subset-in-r
Subset data equal to one value
What is the mean of “Temp” when “Month” is equal to 6?
Posted in Coursera, R
Leave a comment
Range of Data
Extract the subset of rows of the data frame where Ozone values are above 31 and Temp values are above 90. What is the mean of Solar.R in this subset? Google search: “R subset values in one column above threshold” … Continue reading
Posted in Coursera, R
2 Comments