@@ -365,8 +365,8 @@ Length
365365~~~~~~
366366
367367SAS determines the length of a character string with the
368- `LENGTHN <http ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002284668.htm >`__
369- and `LENGTHC <http ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002283942.htm >`__
368+ `LENGTHN <https ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002284668.htm >`__
369+ and `LENGTHC <https ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002283942.htm >`__
370370functions. ``LENGTHN `` excludes trailing blanks and ``LENGTHC `` includes trailing blanks.
371371
372372.. code-block :: sas
391391~~~~
392392
393393SAS determines the position of a character in a string with the
394- `FINDW <http ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002978282.htm >`__ function.
394+ `FINDW <https ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002978282.htm >`__ function.
395395``FINDW `` takes the string defined by the first argument and searches for the first position of the substring
396396you supply as the second argument.
397397
@@ -417,7 +417,7 @@ Substring
417417~~~~~~~~~
418418
419419SAS extracts a substring from a string based on its position with the
420- `SUBSTR <http ://www2.sas.com/proceedings/sugi25/25/cc/25p088.pdf >`__ function.
420+ `SUBSTR <https ://www2.sas.com/proceedings/sugi25/25/cc/25p088.pdf >`__ function.
421421
422422.. code-block :: sas
423423
@@ -438,7 +438,7 @@ indexes are zero-based.
438438 Scan
439439~~~~
440440
441- The SAS `SCAN <http ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214639.htm >`__
441+ The SAS `SCAN <https ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214639.htm >`__
442442function returns the nth word from a string. The first argument is the string you want to parse and the
443443second argument specifies which word you want to extract.
444444
@@ -469,9 +469,9 @@ approaches, but this just shows a simple approach.
469469 Upcase, Lowcase, and Propcase
470470~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
471471
472- The SAS `UPCASE <http ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000245965.htm >`__
473- `LOWCASE <http ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000245912.htm >`__ and
474- `PROPCASE <http ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/a002598106.htm >`__
472+ The SAS `UPCASE <https ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000245965.htm >`__
473+ `LOWCASE <https ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000245912.htm >`__ and
474+ `PROPCASE <https ://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/a002598106.htm >`__
475475functions change the case of the argument.
476476
477477.. code-block :: sas
@@ -709,7 +709,7 @@ This means that the size of data able to be loaded in pandas is limited by your
709709machine's memory, but also that the operations on that data may be faster.
710710
711711If out of core processing is needed, one possibility is the
712- `dask.dataframe <http ://dask.pydata.org/en/latest/dataframe.html >`_
712+ `dask.dataframe <https ://dask.pydata.org/en/latest/dataframe.html >`_
713713library (currently in development) which
714714provides a subset of pandas functionality for an on-disk ``DataFrame ``
715715
0 commit comments