Skip to content

DOC: changed the term Vern to Versions to be clearer #5258

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions doc/source/basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 Vern (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
Expand Down Expand Up @@ -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
Expand Down