Skip to content

Commit 3971223

Browse files
committed
DOC: v0.14.1 corrections
1 parent 4afc08e commit 3971223

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

doc/source/remote_data.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Yahoo! Finance
5252
f=web.DataReader("F", 'yahoo', start, end)
5353
f.ix['2010-01-04']
5454
55-
.. _remote_data.yahoo_Options:
55+
.. _remote_data.yahoo_options:
5656

5757
Yahoo! Finance Options
5858
----------------------

doc/source/v0.14.1.txt

+9-11
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ Enhancements
114114

115115
.. ipython:: python
116116

117-
rng = date_range('3/6/2012 00:00', periods=10, freq='D',
118-
tz='dateutil/Europe/London')
119-
rng.tz
117+
rng = date_range('3/6/2012 00:00', periods=10, freq='D',
118+
tz='dateutil/Europe/London')
119+
rng.tz
120120

121121
See :ref:`the docs <timeseries.timezone>`.
122122

@@ -150,16 +150,14 @@ Performance
150150
Experimental
151151
~~~~~~~~~~~~
152152

153-
``pandas.io.data.Options`` has a get_all_data method and now consistently returns a multi-indexed ``DataFrame`` (:issue:`5602`)
154-
See :ref:`the docs<remote_data.yahoo_Options>` ***Experimental***
153+
``pandas.io.data.Options`` has gained a ``get_all_data method``, and now consistently returns a multi-indexed ``DataFrame`` (:issue:`5602`). See :ref:`the docs<remote_data.yahoo_options>`
155154

156-
.. ipython:: python
157-
158-
from pandas.io.data import Options
159-
aapl = Options('aapl', 'yahoo')
160-
data = aapl.get_all_data()
161-
data.iloc[0:5, 0:5]
155+
.. ipython:: python
162156

157+
from pandas.io.data import Options
158+
aapl = Options('aapl', 'yahoo')
159+
data = aapl.get_all_data()
160+
data.iloc[0:5, 0:5]
163161

164162
.. _whatsnew_0141.bug_fixes:
165163

0 commit comments

Comments
 (0)