Skip to content

Commit

Permalink
Merge pull request #20 from AdamSpannbauer/prep_for_release
Browse files Browse the repository at this point in the history
Prep for release
  • Loading branch information
AdamSpannbauer committed Mar 17, 2019
2 parents 60b81e8 + 9bd76f5 commit 3ff4fd8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ License: MIT + file LICENSE
URL: https://github.com/AdamSpannbauer/lexRankr/
BugReports: https://github.com/AdamSpannbauer/lexRankr/issues/
LazyData: TRUE
RoxygenNote: 6.0.1
RoxygenNote: 6.1.1
Imports: SnowballC, igraph, Rcpp
Depends: R (>= 2.10)
LinkingTo: Rcpp
Suggests: covr, testthat, R.rsp
VignetteBuilder: R.rsp
Encoding: UTF-8
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lexRankr: Extractive Text Summariztion in R

[![Build Status](https://travis-ci.org/AdamSpannbauer/lexRankr.svg?branch=master)](https://travis-ci.org/AdamSpannbauer/lexRankr) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/AdamSpannbauer/lexRankr?branch=master&svg=true)](https://ci.appveyor.com/project/AdamSpannbauer/lexRankr) [![Coverage Status](https://img.shields.io/codecov/c/github/AdamSpannbauer/lexRankr/master.svg)](https://codecov.io/github/AdamSpannbauer/lexRankr?branch=master) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/lexRankr)](https://CRAN.R-project.org/package=lexRankr) ![](http://cranlogs.r-pkg.org/badges/grand-total/lexRankr)
[![Build Status](https://travis-ci.org/AdamSpannbauer/lexRankr.svg?branch=master)](https://travis-ci.org/AdamSpannbauer/lexRankr) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/AdamSpannbauer/lexRankr?branch=master&svg=true)](https://ci.appveyor.com/project/AdamSpannbauer/lexRankr) [![Coverage Status](https://img.shields.io/codecov/c/github/AdamSpannbauer/lexRankr/master.svg)](https://codecov.io/github/AdamSpannbauer/lexRankr?branch=master) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/lexRankr)](https://CRAN.R-project.org/package=lexRankr) ![](http://cranlogs.r-pkg.org/badges/grand-total/lexRankr) [![Last Commit](https://img.shields.io/github/last-commit/AdamSpannbauer/lexRankr.svg)](https://github.com/AdamSpannbauer/lexRankr/commits/master)

## Installation

Expand Down
1 change: 0 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
## Test environments

* win-builder (r devel and release)
* 1 NOTE for '(possibly) invalid URLs' in vignette. The NOTE has been reviewed and the related URL is of no issue to the vignette.
* travis-ci (build passing for r devel and release)
* appveyor (build passing)
* local macOS Mojave 10.14; R version 3.4.4
Expand Down
5 changes: 3 additions & 2 deletions man/lexRankFromSimil.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions man/unnest_sentences_.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vignettes/Analyzing_Twitter_with_LexRankr.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ <h2>Get user tweets</h2>
}
<span class="kw">return</span>(timeline_df)
}</code></pre></div>
<p>We can now use our function to gather a user’s tweets with the additional information of date-time, favorites, retweets. Lets use one of the most famous twitter accounts as of late: <span class="citation">[@realDonaldTrump]</span>(<a href="https://twitter.com/realDonaldTrump" class="uri">https://twitter.com/realDonaldTrump</a>).</p>
<p>We can now use our function to gather a user’s tweets with the additional information of date-time, favorites, retweets. Lets use one of the most famous twitter accounts as of late: <a href="https://twitter.com/realDonaldTrump" class="uri">@realDonaldTrump</a>.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">tweets_df &lt;-<span class="st"> </span><span class="kw">get_timeline_df</span>(<span class="st">&quot;realDonaldTrump&quot;</span>, <span class="dv">600</span>, sig) %&gt;%<span class="st"> </span>
<span class="st"> </span><span class="kw">mutate</span>(<span class="dt">text =</span> <span class="kw">str_replace_all</span>(text, <span class="st">&quot;</span><span class="ch">\n</span><span class="st">&quot;</span>, <span class="st">&quot; &quot;</span>)) <span class="co">#clean out newlines for display</span>

Expand Down Expand Up @@ -240,7 +240,7 @@ <h2>Repeating tweetRank analysis for other users</h2>
<td align="right">0.0085708</td>
</tr>
<tr class="even">
<td align="left">Last day to get anything from our Valentine’s Collection by Valentine’s Day! Shop: <a href="https://t.co/MXljGLH3qY" class="uri">https://t.co/MXljGLH3qY</a> <a href="https://t.co/qFBCMytKMB" class="uri">https://t.co/qFBCMytKMB</a></td>
<td align="left">Last day to get anything from our Valentine’s Collection by Valentine’s Day!</td>
<td align="right">0.0077583</td>
</tr>
<tr class="odd">
Expand All @@ -249,7 +249,7 @@ <h2>Repeating tweetRank analysis for other users</h2>
</tr>
</tbody>
</table>
<p></br></br></p>
<p><br/><br/></p>
</div>


Expand Down

0 comments on commit 3ff4fd8

Please sign in to comment.