patternpythonMinor
Calculating doubling times from data points
Viewed 0 times
pointsdoublingcalculatingtimesfromdata
Problem
In the code below, noisy data points with unique errors are created. From this, an exponential function is fitted to the data points, and then doubling times (10 unit windows) are calculated.
I'm uncertain how to show the unique errors in the data points in the fitted function or doubling times.
Output:
```
from scipy import optimize
from matplotlib import pylab as plt
import numpy as np
import pdb
from numpy import log
def exp_growth(t, x0, r):
return x0 * ((1 + r) ** t)
def doubling_time(m, x_pts, y_pts):
window = 10
x1 = x_pts[m]
y1 = y_pts[m]
x2 = x_pts[m+window]
y2 = y_pts[m+window]
return (x2 - x1) * log(2) / log(y2 / y1)
# First, artificially create data points to work with
data_points = 42
# Create the x-axis
x_pts = range(0, data_points)
# Create noisy points with: y = x^2 + noise, with unique possible errors
y_pts = []
y_err = []
for i in range(data_points):
random_scale = np.random.random()
y_pts.append((i i) + data_points random_scale)
y_err.append(random_scale * 100 + 100)
x_pts = np.array(x_pts)
y_pts = np.array(y_pts)
y_err = np.array(y_err)
# Fit to function
[x0, r], pcov = optimize.curve_fit(exp_growth, x_pts, y_pts, p0=(0.001, 1.0))
fitted_data = exp_growth(x_pts, x0, r)
# Find doubling times
x_t2 = range(32)
t2 = []
t2_fit = []
for i in range(32):
t2.append(doubling_time(i, x_pts, y_pts))
t2_fit.append(doubling_time(i, x_pts, fitted_data))
# Plot
fig, (ax1, ax2, ax3) = plt.subplots(3, 1, sharex=True)
ax1.plot(x_pts, y_pts, 'bo')
ax1.errorbar(x_pts, y_pts, yerr=y_err)
ax1.set_ylim([0, 2000])
ax1.set_title('Artificially created raw data points with unique errors', fontsize=8)
ax2.plot(fitted_data, 'g-')
ax2.set_ylim([0, 2000])
ax2.set_title('Fitted exponential function', fontsize=8)
ax3.plot(x_t2, t2, 'ro', label='From points')
ax3.plot(x_t2, t2_fit, 'bo', label='From fitted')
ax3.set_title('Doubling time at each point (10 unit window)', fontsize=8)
ax3.legend(fontsize='8')
plt.s
I'm uncertain how to show the unique errors in the data points in the fitted function or doubling times.
Output:
```
from scipy import optimize
from matplotlib import pylab as plt
import numpy as np
import pdb
from numpy import log
def exp_growth(t, x0, r):
return x0 * ((1 + r) ** t)
def doubling_time(m, x_pts, y_pts):
window = 10
x1 = x_pts[m]
y1 = y_pts[m]
x2 = x_pts[m+window]
y2 = y_pts[m+window]
return (x2 - x1) * log(2) / log(y2 / y1)
# First, artificially create data points to work with
data_points = 42
# Create the x-axis
x_pts = range(0, data_points)
# Create noisy points with: y = x^2 + noise, with unique possible errors
y_pts = []
y_err = []
for i in range(data_points):
random_scale = np.random.random()
y_pts.append((i i) + data_points random_scale)
y_err.append(random_scale * 100 + 100)
x_pts = np.array(x_pts)
y_pts = np.array(y_pts)
y_err = np.array(y_err)
# Fit to function
[x0, r], pcov = optimize.curve_fit(exp_growth, x_pts, y_pts, p0=(0.001, 1.0))
fitted_data = exp_growth(x_pts, x0, r)
# Find doubling times
x_t2 = range(32)
t2 = []
t2_fit = []
for i in range(32):
t2.append(doubling_time(i, x_pts, y_pts))
t2_fit.append(doubling_time(i, x_pts, fitted_data))
# Plot
fig, (ax1, ax2, ax3) = plt.subplots(3, 1, sharex=True)
ax1.plot(x_pts, y_pts, 'bo')
ax1.errorbar(x_pts, y_pts, yerr=y_err)
ax1.set_ylim([0, 2000])
ax1.set_title('Artificially created raw data points with unique errors', fontsize=8)
ax2.plot(fitted_data, 'g-')
ax2.set_ylim([0, 2000])
ax2.set_title('Fitted exponential function', fontsize=8)
ax3.plot(x_t2, t2, 'ro', label='From points')
ax3.plot(x_t2, t2_fit, 'bo', label='From fitted')
ax3.set_title('Doubling time at each point (10 unit window)', fontsize=8)
ax3.legend(fontsize='8')
plt.s
Solution
Especially with mathematical-like programs, you want to write docstrings with your functions and classes.
In case you don't know what a docstring is, a docstring is a short piece of documentation that describes the parameters and return value of a function. And, it can include any sort of information/summary that is needed to fully explain a function.
Here is an example:
In the case of your code where you have a few mathematical functions, providing a docstring is greatly important because there you can write out the formula that the function is using, what each part of the formula means, and what the return of the formula does for the rest of your code.
And, in places that aren't functions but need a docstring, you can just a
All of your main code (aside from functions) should be put into:
See here for why.
Your code seems very procedural. You have a few functions here and there but other than that, everything is just one after the other.
I'm having difficulty following your code so I can't give too many specific recommendations, but you should move more code to separate functions. For example, however, you could try to make a function call
That way, when you put your code into
In case you don't know what a docstring is, a docstring is a short piece of documentation that describes the parameters and return value of a function. And, it can include any sort of information/summary that is needed to fully explain a function.
Here is an example:
def add(a, b):
"""
Adds two numbers together and returns the sum
a + b
@param(number) -- one number to add
@param(number) -- another number to add
@return(number) -- the sum of both parameters
return a + bIn the case of your code where you have a few mathematical functions, providing a docstring is greatly important because there you can write out the formula that the function is using, what each part of the formula means, and what the return of the formula does for the rest of your code.
And, in places that aren't functions but need a docstring, you can just a
# comments on the side (you don't have enough of these).All of your main code (aside from functions) should be put into:
if __name__ == "__main__":
[code or main()]See here for why.
Your code seems very procedural. You have a few functions here and there but other than that, everything is just one after the other.
I'm having difficulty following your code so I can't give too many specific recommendations, but you should move more code to separate functions. For example, however, you could try to make a function call
create_graph that will create a graph for you in just a single call.That way, when you put your code into
if __name__ == "__main__", every single line of code that you wrote won't be in there.Code Snippets
def add(a, b):
"""
Adds two numbers together and returns the sum
a + b
@param(number) -- one number to add
@param(number) -- another number to add
@return(number) -- the sum of both parameters
return a + bif __name__ == "__main__":
[code or main()]Context
StackExchange Code Review Q#92052, answer score: 3
Revisions (0)
No revisions yet.