http://stackoverflow.com/questions/6456501/how-to-include-source-r-script-in-other-scripts
Missing Values (NA)
Sometimes values in a vector are missing and you have to show them using NA, which is a special value in R for "Not Available". For example, if you don't know the age restriction for some movies, you can use NA.
In [5]:
age_restric <- 10="" 12="" 18="" c="" na="" p="">age_restric
is.na(age_restric)
Out[5]:
[1] 14 12 10 NA 18 NA
Out[5]:
[1] FALSE FALSE FALSE TRUE FALSE TRUE
Google Data Studio
https://www.google.com/analytics/data-studio/
How to delete multiple values from a vector?
http://stackoverflow.com/questions/9665984/how-to-delete-multiple-values-from-a-vectorCompleted Module 1 on Coursera , has a brief introduction to Data Science and more focus is on getting the tools ready.Can't wait for Module 2 :P
->
Comments
Post a Comment