Skip to content

Commit

Permalink
workflowr::wflow_publish("newsgroups_more.Rmd")
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarbo committed Aug 7, 2024
1 parent 03e89fc commit 269b84d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions analysis/newsgroups_more.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: A closer look at some of the results on the newsgroups data
author: Peter Carbonetto
output: workflowr::wflow_html
---

Here we take a closer look at some of the results on the newsgroups data.

```{r knitr-opts, include=FALSE}
knitr::opts_chunk$set(comment = "#",collapse = TRUE,results = "hold",
fig.align = "center")
```

Load the packages used in this analysis.

```{r load-pkgs, message=FALSE}
library(Matrix)
library(fastTopics)
library(ggplot2)
library(cowplot)
set.seed(1)
```

Load the newsgroups data.

```{r load-data}
load("../data/newsgroups.RData")
```

0 comments on commit 269b84d

Please sign in to comment.