Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 65b7875

Browse files
committed
reverted rec utils to mlab
svn path=/trunk/matplotlib/; revision=4175
1 parent fbafc23 commit 65b7875

4 files changed

Lines changed: 800 additions & 9 deletions

File tree

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2007-11-08 Added additional record array utilites to mlab (rec2excel,
2+
rec2gtk, rec_join, rec_append_field, rec_drop_field) - JDH
3+
14
2007-11-08 Updated pytz to version 2007g - DSD
25

36
2007-11-08 Updated pyparsing to version 1.4.8 - DSD

examples/date_index_formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"""
1010

1111
import numpy
12-
from matplotlib.recutils import csv2rec
12+
from matplotlib.mlab import csv2rec
1313
from pylab import figure, show
1414
from matplotlib.ticker import Formatter
1515

examples/loadrec.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from matplotlib.recutils import csv2rec
1+
from matplotlib import mlab
22
from pylab import figure, show
33

4-
a = csv2rec('data/msft.csv')
4+
a = mlab.csv2rec('data/msft.csv')
55
print a.dtype
66

77
fig = figure()

0 commit comments

Comments
 (0)