Skip to content

Commit

Permalink
remove cursed attach
Browse files Browse the repository at this point in the history
this addressed #92
  • Loading branch information
zkamvar committed Nov 27, 2019
1 parent fa7fed3 commit 20f221f
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions content/post/practical-oz-fetp-data-management.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -342,11 +342,6 @@ While storing variable values as numbers is important for analysis, we need to b
Tabulating data:

```{r, eval=FALSE}
#attach the dataset before analysis
attach(meningitis_csv_dataset)
table (sex)
# or you can avoid the 'attach(dataset)' by using the '$' operator to specify which dataset the variable comes from:
table(meningitis$sex)
````
Expand Down

0 comments on commit 20f221f

Please sign in to comment.