Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
BTM2016_RDatasets
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hugo Carlos
BTM2016_RDatasets
Commits
6b185bc9
Commit
6b185bc9
authored
Oct 20, 2016
by
Hugo Carlos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace R_Datasets.md
parent
33d47ff5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
0 deletions
+52
-0
R_Datasets.md
R_Datasets.md
+52
-0
No files found.
R_Datasets.md
View file @
6b185bc9
...
...
@@ -259,5 +259,57 @@ pairs(bodyfat[ , 1:6])
## Fail but quick and loudly
```
{r}
message("Your code is talking to you")
#for(i in c(2, 1, 0, -1)){
# sqrt(i)
#}
for(i in c(2, 1, 0, -1)){
if(i >= 0){
sqrt(i)
print(i)
}
}
# Trying to calculate the mean of the columns 4th, 3rd, and 17th
# Unknown vector
UnknownVector <- c(c(4, 3, 17))
#sapply( UnknonwVector, function(x){
# mean(bodyfat[, x])
#})
# bodyfat[ ,17]
# Lets prevent to have an error:
# option 1:
sapply( UnknownVector, function(x){
try(mean(bodyfat[, x]))
} )
# Option 2:
sapply( UnknownVector[ which( UnknownVector %in% 1:dim(bodyfat)[2] ) ], function(x){
mean( bodyfat[, x] )
} )
# Option 3:
options(show.error.messages = FALSE)
sapply( UnknownVector, function(x){
to_return <- NA
column <- try(bodyfat[, x])
if( class(column) == "try-error" ){
message( paste0("The column ", x, " does not exist, I'm sorry :( ") )
} else
to_return <- mean( column )
return(to_return)
} )
options(show.error.messages = TRUE)
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment