@@ -365,8 +365,8 @@ Length
365
365
~~~~~~
366
366
367
367
SAS 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 >`__
370
370
functions. ``LENGTHN `` excludes trailing blanks and ``LENGTHC `` includes trailing blanks.
371
371
372
372
.. code-block :: sas
391
391
~~~~
392
392
393
393
SAS 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.
395
395
``FINDW `` takes the string defined by the first argument and searches for the first position of the substring
396
396
you supply as the second argument.
397
397
@@ -417,7 +417,7 @@ Substring
417
417
~~~~~~~~~
418
418
419
419
SAS 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.
421
421
422
422
.. code-block :: sas
423
423
@@ -438,7 +438,7 @@ indexes are zero-based.
438
438
Scan
439
439
~~~~
440
440
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 >`__
442
442
function returns the nth word from a string. The first argument is the string you want to parse and the
443
443
second argument specifies which word you want to extract.
444
444
@@ -469,9 +469,9 @@ approaches, but this just shows a simple approach.
469
469
Upcase, Lowcase, and Propcase
470
470
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
471
471
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 >`__
475
475
functions change the case of the argument.
476
476
477
477
.. code-block :: sas
@@ -709,7 +709,7 @@ This means that the size of data able to be loaded in pandas is limited by your
709
709
machine's memory, but also that the operations on that data may be faster.
710
710
711
711
If 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 >`_
713
713
library (currently in development) which
714
714
provides a subset of pandas functionality for an on-disk ``DataFrame ``
715
715
0 commit comments