Skip to content

Commit

Permalink
resolved CRAN review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimtyuryaev committed Nov 13, 2024
1 parent a5007ba commit a520707
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions man/vis_reg.Rd

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

2 changes: 2 additions & 0 deletions vignettes/BetaVisualizer.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -368,11 +368,13 @@ heart_cont_table
# 'age' is skewed variable with a very big range
paste("Range of '\ age \' variable is : ",diff(range(heart_df_filtered$age)))
old_par = par()
par(mfrow=c(2,2))
hist(heart_df_filtered$age, main="Histogram of Age", xlab="age")
boxplot(heart_df_filtered$age,main="Boxplot of Age", ylab="age")
hist(sqrt(heart_df_filtered$age),main="Histogram of transformed data", xlab="Sqrt(age)")
boxplot(sqrt(heart_df_filtered$age),main="Boxplot of transformed data", ylab="Sqrt(age)")
par(old_par)
```

Expand Down

0 comments on commit a520707

Please sign in to comment.