Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

Latest commit

 

History

History
33 lines (25 loc) · 770 Bytes

README.md

File metadata and controls

33 lines (25 loc) · 770 Bytes

README

@hrbrmstr September 14, 2019

Twitter account analysis like this one.

A lesser, static version of accountanalysis.

Can be used in a function call:

render_report <-  function(twitterusername, tweetcount = 3000) {

  rmarkdown::render(input = "account-analysis.Rmd",
                    params = list(
                      username = twitterusername,
                      n_tweets_to_retrieve = tweetcount
                      ),
                    output_file = paste0(
                      "AccountAnalysisOf-",
                      twitterusername,
                      ".html"
                    )
  )
  }