Created
April 23, 2017 17:51
-
-
Save BojanKomazec/5e8f307403fdfc2dc1d3201cbb944179 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> s1 <- "United" | |
> s2 <- "Kingdom" | |
> s1+s2 | |
Error in s1 + s2 : non-numeric argument to binary operator | |
> paste(s1, s2) | |
[1] "United Kingdom" | |
> paste0(s1, s2) | |
[1] "UnitedKingdom" | |
> s3 <- "is in Europe" | |
> paste(s1, s2, s3) | |
[1] "United Kingdom is in Europe" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment