## Usage
```javascript
var nlp = require( '@stdlib/nlp' );
```
#### nlp
Standard library natural language processing (NLP).
```javascript
var fcns = nlp;
// returns {...}
```
- [`expandContractions( str )`][@stdlib/nlp/expand-contractions]: expand all contractions to their formal equivalents.
- [`lda( docs, K[, options] )`][@stdlib/nlp/lda]: latent Dirichlet Allocation via collapsed Gibbs sampling.
- [`porterStemmer( word )`][@stdlib/nlp/porter-stemmer]: extract the stem of a given word.
- [`tokenize( str[, keepWhitespace] )`][@stdlib/nlp/tokenize]: tokenize a string.