EVOLUTION-MANAGER
Edit File: parts_of_speech.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Parts of speech for English words from the Moby Project</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for parts_of_speech {tidytext}"><tr><td>parts_of_speech {tidytext}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Parts of speech for English words from the Moby Project</h2> <h3>Description</h3> <p>Parts of speech for English words from the Moby Project by Grady Ward. Words with non-ASCII characters and items with a space have been removed. </p> <h3>Usage</h3> <pre> parts_of_speech </pre> <h3>Format</h3> <p>A data frame with 205,985 rows and 2 variables: </p> <dl> <dt>word</dt><dd><p>An English word</p> </dd> <dt>pos</dt><dd><p>The part of speech of the word. One of 13 options, such as "Noun", "Adverb", "Adjective"</p> </dd> </dl> <h3>Details</h3> <p>Another dataset of English parts of speech, available only for non-commercial use, is available as part of SUBTLEXus at <a href="https://www.ugent.be/pp/experimentele-psychologie/en/research/documents/subtlexus/">https://www.ugent.be/pp/experimentele-psychologie/en/research/documents/subtlexus/</a>. </p> <h3>Source</h3> <p><a href="https://archive.org/details/mobypartofspeech03203gut">https://archive.org/details/mobypartofspeech03203gut</a> </p> <h3>Examples</h3> <pre> library(dplyr) parts_of_speech parts_of_speech %>% count(pos, sort = TRUE) </pre> <hr /><div style="text-align: center;">[Package <em>tidytext</em> version 0.3.4 <a href="00Index.html">Index</a>]</div> </body></html>