Learning how to test hypotheses with plants

In this post we will examine the hypothesis test. we will:

Learning how to test hypotheses with plants

In this post we will examine the hypothesis test. we will:

  1. Look at what a hypothesis test is.
  2. Perform a hypothesis test on the R ‘CO2’ dataset.
  3. Perform a better hypothesis test on the same dataset.
  4. Analyze the results of our hypothesis test to understand what it means.

This post will be targeted at relative beginners (or those seeking review) and I will be using certain vocabulary terms interchangably here to make concepts easier to understand.

What is a hypothesis test?

A hypothesis test is tool we can use to answer a question. Here is our question: We want to know whether or not cooling plants affects (increases or decreases) their CO2 absorbtion. In a hypothesis test we formulate two possible outcomes (answers to our question) as ‘hypotheses.’ The hypothesis test looks like:

Hypothesis 1: Chilling plants does not affect their CO2 absorbtion.

Hypothesis 2: Chilling plants does affect their CO2 absorbtion.

We will call Hypothesis 1 the ‘Null Hypothesis’ because this is the outcome where nothing or ‘null’ happens. We will call Hypothesis 2 the ‘Alternate Hypothesis’ this is the outcome that differs from the null hypothesis.

The dataset we will be using is the R ‘CO2’ dataset. In this dataset the CO2 (carbon dioxide) absorbtion of chilled plants and the CO2 absorbtion of non-chilled plants was measured. I have cleaned the data by removing the index; I suggest you use my data file. We will take this data and use a hypothesis test to determine if the CO2 absorbtion of plants in a ‘chilled’ environment differs from plants in a ‘non-chilled’ environment.

# import some useful packages 
%matplotlib inline
import pandas as pd
import numpy as np
from scipy import stats
from fitter import Fitter
import matplotlib.pyplot as plt
# silence warnings for beautification 
import warnings
warnings.filterwarnings('ignore')
# create a dataframe df with our data 
df = pd.read_csv('co2_data.csv')
df.head()

We need to have a look quickly at the data to make sure it doesn’t have any weird characteristics. Lets check that the number of chilled and nonchilled plants is the same. Below we can see they are even; if they weren’t this would make it harder to do our hypothesis test.

# count how many chilled/unchilled plant measurements we have nonchill_plants = df[df['Treatment'] == 'nonchilled']
chill_plants = df[df['Treatment'] == 'chilled']
num_nonchilled = nonchill_plants.shape[0]
num_chilled = chill_plants.shape[0]
print('num chilled: {}, num normal: {}'.format(num_chilled, num_nonchilled))
num chilled: 42, num normal: 42

In many instances it’s better to have more data than this (42 samples) to be able to make firmly reject or accept a hypothesis, usually a sample of at least 100 is considered desirable for being able to answer hypotheses. 42 is not too low though and we can probably get away with using this many samples.

Now lets check that the number of observations is even across co2 concentrations. If there are more expermiments at higher or lower concentrations of CO2 this could affect our ability to test. It looks like the number of experiments at each concentration is indeed even.

# check to see if there is bias # in the concentrations of CO2 df.groupby('conc').size()
conc
95 12
175 12
250 12
350 12
500 12
675 12
1000 12
dtype: int64

Let’s graph the CO2 absorbtion values for non-chilled plants. We will call this distribution our ‘non-chilled’ distribution.

plt.figure(figsize=(12.5,10))
plt.hist(nonchill_plants['uptake'], color='c3', label='non-chilled', alpha=0.7)
plt.xlabel('co2 absorbtion')
plt.ylabel('count')
plt.legend(loc='upper left')
plt.title('non-chilled plant data')
plt.show()

So we have our data:

Our distribution of non-chilled plants has two (or three?) bumps, with most data points in the right bump.

And we have our hypotheses:

Null Hypothesis: Chilling plants does not affect their CO2 absorbtion.

Alternate Hypothesis: Chilling plants does affect their CO2 absorbtion.

Now we need to find out which hypothesis occurred by looking at the data.

One way to find out is to compare the distributions of the data with our eyes. If the chilled plant distribution differs significantly from the non-chilled distribution then the alternate hypothesis is probably correct. If the two distributions are the same then then null hypothesis is probably correct. Let’s graph both distributions and compare.

plt.figure(figsize=(12.5,10))
plt.hist(nonchill_plants['uptake'], label='non-chilled', color='c3', alpha=0.7)
plt.hist(chill_plants['uptake'], label='chilled', color='c0', alpha=0.7)
plt.xlabel('co2 absorbtion')
plt.ylabel('count')
plt.legend(loc='upper left')
plt.title('non-chilled plant data overlaid with chilled plant data')
plt.show()

This chilled plant distrbiution in blue looks significantly rebalanced towards lower values of CO2 absorbtion. This implies that the chilling of plants affects their CO2 absorbtion; we can choose our alternate hypothesis as correct:

Null Hypothesis: Chilling plants does not affect their CO2 absorbtion.

Alternate Hypothesis: Chilling plants does affect their CO2 absorbtion.

Comparing distributions with your eyes is the simplest way to choose between two possible hypotheses.

Statistical tests

While the prior method seems to work well enough for the problem posed here it is not entirely robust. Sometimes two distributions are not easy to tell apart. How can we objectively tell when one distribution is different from another distribution?

You can use something called a statistical test: it tells you how similar two distributions are or more precisely it tells you the probability (p-value) that data you are testing came from a particular distribution. Below we are going to perform a statistical test to see if our chillled plant data comes from the same distribution as our non-chilled plant data.

In python you can perform a statistical test using scipy.stats for any well defined distribution but our distribution of non-chilled plant CO2 absorbtion is not well defined. So we’re going to find a well known distribution that is as similar as possible to our non-chilled distribution, we can use the fitter package which just does a lot of the nasty work of iterating through possible distributions for us to find the distribution that is most similar to our non-chilled distribution.

Let us find out which distribution our non-chilled plant data comes from.

f = fitter(nonchill_plants['uptake'], bins=10)
f.verbose = false
f.fit()
best_shape_1 = f.get_best()
dst1 = list(best_shape_1.keys())[0]
print('non-chilled plant co2 absorbtion')
print('dstribution: {}'.format(dst1))
print('best distribution shape: {}'.format(best_shape_1[dst1]))
print('best 5 distributions, lowest 5 errors:')
f.df_errors.sort(columns=['sumsquare_error'], ascending=true).ix[:5]
non-chilled plant co2 absorbtion
dstribution: genhalflogistic
best distribution shape: (0.83770454292175289, 10.599999993744611, 29.353144088738148)
best 5 distributions, lowest 5 errors:

It looks like the genhalflogistic distribution is the one that fits our non-chilled data most closely with an error value of 0.001242. We will use this distribution to test our hypotheses. Let’s visually inspect the genhalflogisitc distribution to confirm that this distribution is similiar to our non-chilled plant data.

rvf = stats.genhalflogistic.pdf(x=[x for x in range(11,46)],
c=best_shape_1[dst1][0],
loc=best_shape_1[dst1][1],
scale=best_shape_1[dst1][2])

plt.figure(figsize=(12.5,10))
plt.hist(nonchill_plants['uptake'], label='non-chilled', color='c3', alpha=0.7, normed=true, bins=10)
plt.plot([x for x in range(11,46)], rvf, label='genhalflogistic', color='c3')
plt.xlabel('co2 absorbtion')
plt.ylabel('count')
plt.legend(loc='upper left')
plt.title('non-chilled plant distribution and genhalflogistic distribution')
plt.show()

It’s not perfect but it looks like the genhalflogisitic distribution does indeed match our non-chilled plant data to a high degree. Both slope upward to the right and both have a little dip around 15–25 along the CO2 Absorbtion axis.

We can say that if the chilled plant distribution is sufficiently different from the genhalflogistic distribution representing our non-chilled plant data that the chilled plants have had their CO2 absorbtion affected.

To measure how different the chilled plant data is from the genhalflogistic distribution we use something called a p-value. The p-value is just the probability that a certain sample of data came from a certain distribution. If we get a low enough p-value when we check to see if chilled data came from our genhalflogisitic distribution we can conclude that chilled plant data follows a different distribution and behaves differently from genhalflogisitc/non-chilled distribution.

To get p-value with our genhalflogisitc distribution and our chilled plant data we will feed both those into something called a Kolmogorov-Smirnov test, or ks-test. Let’s calculate some p values.

_, nonchilled_pvalue = stats.kstest(nonchill_plants['uptake'], 'genhalflogistic', args=best_shape_1[dst1])
_, chilled_pvalue = stats.kstest(chill_plants['uptake'], 'genhalflogistic', args=best_shape_1[dst1])
print('p-value (probability) of non-chilled data being from our genhalflogistic: ', nonchilled_pvalue)
print('p-value (probability) of chilled data being from our genhalflogistic: ', chilled_pvalue)
p-value (probability) of non-chilled data being from our genhalflogistic:  0.639477797842
p-value (probability) of chilled data being from our genhalflogistic:  2.24809405358e-05

The probability that the non-chilled data is from this genhalflogistic distribution is 63.94% (p-value 0.6394). This makes sense as this genhalflogisitic distribution was created using this data and is shaped around it.

The probability that the chilled plant data came from our genhalflogistic distribution is small: .00224% (p-value 0.0000224). Usually if a p-value is lower than 0.05 you can say the p-value is ‘small enough.’ The statistics lingo for when we get a ‘small enough’ p-value is that the result we have observed is ‘statistically significant.’ The low probability that our chilled data came from the same distribution as our non-chilled data suggests that when the plants are chilled their distribution of CO2 absorbtion changes significantly. We can verify this by using fitter again and seeing what distribution our chilled plant data follows.

f = fitter(chill_plants['uptake'], bins=10)
f.verbose = false
f.fit()
best_shape_2 = f.get_best()
dst2 = list(best_shape_2.keys())[0]
print('chilled plant co2 absorbtion')
print('dstribution: {}'.format(dst2))
print('best distribution shape: {}'.format(best_shape_2[dst2]))
print('best 5 distributions, lowest 5 errors:')
f.df_errors.sort(columns=['sumsquare_error'], ascending=true).ix[:5]
chilled plant co2 absorbtion
dstribution: dweibull
best distribution shape: (2.6804403695668575, 25.999783783267702, 11.415991122238617)
best 5 distributions, lowest 5 errors:

It looks like the best fit for the chilled plant data is in fact a double weibull distribution with error value of 0.000780. This distribution looks quite different from our genhalflogistic representing the non-chilled plant data. We will graph the double weibull and the chilled plant data below. You can compare it to the graph above to see the difference.

rvf_dwe = stats.dweibull.pdf(x=[x for x in range(8,43)], c=best_shape_2[dst2][0], loc=best_shape_2[dst2][1], scale=best_shape_2[dst2][2]) 
plt.figure(figsize=(12.5,10))
plt.hist(chill_plants['uptake'], label='chilled', color='C0', alpha=0.7, normed=True, bins=10)
plt.plot([x for x in range(8,43)], rvf_dwe, label='dweibull', color='C0')
plt.xlabel('CO2 Absorbtion')
plt.ylabel('Count')
plt.legend(loc='upper left')
plt.title('Chilled pland distribution and double weibull distribution')
plt.show()

Notes on p-value:

What threshold to pick for your p-value is largely arbitrary, usually people accept 0.05 or lower. Nowadays with increasing amounts of data it’s getting easier to get a p-value of 0.05 and some people prefer to set the threshold lower at 0.01 or lower. Here is a comic that was meant as a joke but actually offers some insight into interpreting p-values.

Conclusion

Given the low p-value we found testing chilled plant data against the genhalflogistic distrbution we can reject our null hypothesis and accept our alternate hypothesis:

Null Hypothesis: Chilling plants does not affect their CO2 absorbtion.

Alternate Hypothesis: Chilling plants does affect their CO2 absorbtion.

We also confirmed that the chilled plant data follows a very different distribution than the non-chilled data. Further confirming our hypothesis that chilling plants does affect their CO2 absorbtion.

In this writeup you should have learned:

  1. what a hypothesis test is and how we can use it to answer questions.
  2. an informal method for choosing between hypotheses by visual comparison.
  3. how to perform a statistical test with two distributions to validate hypotheses.

If you’d like to get the next blog post you can signup here.


Originally published at cueblog.com.