Downloads the specified semantic space from osf.io/489he.
Usage
download.lspace(space = "100k_lsa", decompress = TRUE, check.md5 = TRUE,
  mode = "wb", dir = getOption("lingmatch.lspace.dir"),
  overwrite = FALSE)Arguments
- space
- Name of one or more spaces you want to download, or - 'all'for all available.- '100k_lsa'is the default, and some other common options might be- 'google',- 'facebook', or- 'glove'. See osf.io/489he/wiki for more information, and a full list of spaces.
- decompress
- Logical; if - TRUE(default), decompresses the downloaded file with the- bunzip2system command assuming it is available
 (as indicated by- Sys.which('bunzip2')).
- check.md5
- Logical; if - TRUE(default), retrieves the MD5 checksum from OSF, and compares it with that calculated from the downloaded file to check its integrity.
- mode
- A character specifying the file write mode; default is 'wb'. See - download.file.
- dir
- Directory in which to save the space. Specify this here, or set the lspace directory option (e.g., - options(lingmatch.lspace.dir = '~/Latent Semantic Spaces')), or use- lma_initdirsto initialize a directory.
- overwrite
- Logical; if - TRUE, will replace existing files.
See also
Other Latent Semantic Space functions:
lma_lspace(),
select.lspace(),
standardize.lspace()