Skip to content

Commit f53b0df

Browse files
fdabljreback
authored andcommitted
DOC: syntax error in comparion_with_r
closes #12602
1 parent 6a2e751 commit f53b0df

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

doc/source/comparison_with_r.rst

+2-8
Original file line numberDiff line numberDiff line change
@@ -236,12 +236,6 @@ In certain cases :meth:`~pandas.DataFrame.eval` will be much faster than
236236
evaluation in pure Python. For more details and examples see :ref:`the eval
237237
documentation <enhancingperf.eval>`.
238238

239-
zoo
240-
---
241-
242-
xts
243-
---
244-
245239
plyr
246240
----
247241

@@ -295,7 +289,7 @@ In ``pandas`` the equivalent expression, using the
295289
})
296290
297291
grouped = df.groupby(['month','week'])
298-
print grouped['x'].agg([np.mean, np.std])
292+
grouped['x'].agg([np.mean, np.std])
299293
300294
301295
For more details and examples see :ref:`the groupby documentation
@@ -505,4 +499,4 @@ For more details and examples see :ref:`categorical introduction <categorical>`
505499
.. cast: http://www.inside-r.org/packages/cran/reshape2/docs/cast
506500
507501
.. |factor| replace:: ``factor``
508-
.. _factor: https://stat.ethz.ch/R-manual/R-devel/library/base/html/factor.html
502+
.. _factor: https://stat.ethz.ch/R-manual/R-devel/library/base/html/factor.html

0 commit comments

Comments
 (0)