Skip to content

Instantly share code, notes, and snippets.

@mdfischer
Created May 28, 2012 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdfischer/2820672 to your computer and use it in GitHub Desktop.
Save mdfischer/2820672 to your computer and use it in GitHub Desktop.
def backfill_mh(t_series):
bf_series = []
i = 0
s = len(t_series)
print "length:" + str(s)
while i < s:
bf_series.append([95.0, t_series[i][1]])
i = i+1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment