From f7c6152137cbff0a9836d660d876f441fdc67911 Mon Sep 17 00:00:00 2001 From: bmu Date: Fri, 18 Oct 2013 07:51:47 +0200 Subject: [PATCH 1/2] DOC: changed the term `Vern` to `Versions` to be clearer based on this SO question: http://stackoverflow.com/q/19438309/1301710 --- doc/source/basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/basics.rst b/doc/source/basics.rst index 33d1219b3b11f..8a3f507b94280 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -103,7 +103,7 @@ a set of specialized cython routines that are especially fast when dealing with Here is a sample (using 100 column x 100,000 row ``DataFrames``): .. csv-table:: - :header: "Operation", "0.11.0 (ms)", "Prior Vern (ms)", "Ratio to Prior" + :header: "Operation", "0.11.0 (ms)", "Prior Versions (ms)", "Ratio to Prior" :widths: 30, 30, 30, 30 :delim: ; From 822a87d1c6f54c601b11f91a322629477635ddda Mon Sep 17 00:00:00 2001 From: bmu Date: Sat, 19 Oct 2013 08:56:17 +0200 Subject: [PATCH 2/2] DOC: changed "versions" to "version" and updated widths --- doc/source/basics.rst | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/doc/source/basics.rst b/doc/source/basics.rst index 8a3f507b94280..390fab887ed8d 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -103,8 +103,8 @@ a set of specialized cython routines that are especially fast when dealing with Here is a sample (using 100 column x 100,000 row ``DataFrames``): .. csv-table:: - :header: "Operation", "0.11.0 (ms)", "Prior Versions (ms)", "Ratio to Prior" - :widths: 30, 30, 30, 30 + :header: "Operation", "0.11.0 (ms)", "Prior Version (ms)", "Ratio to Prior" + :widths: 25, 25, 25, 25 :delim: ; ``df1 > df2``; 13.32; 125.35; 0.1063 @@ -1040,12 +1040,6 @@ Methods like ``contains``, ``startswith``, and ``endswith`` takes an extra ``cat``,Concatenate strings ``split``,Split strings on delimiter - ``get``,Index into each element (retrieve i-th element) - ``join``,Join strings in each element of the Series with passed separator - ``contains``,Return boolean array if each string contains pattern/regex - ``replace``,Replace occurrences of pattern/regex with some other string - ``repeat``,Duplicate values (``s.str.repeat(3)`` equivalent to ``x * 3``) - ``pad``,"Add whitespace to left, right, or both sides of strings" ``center``,Equivalent to ``pad(side='both')`` ``slice``,Slice each string in the Series ``slice_replace``,Replace slice in each string with passed value