Fixed output. (#4157)

Fixed output provided in comments beside the command.
This commit is contained in:
Shivanshu 2022-01-03 21:53:08 +05:30 committed by GitHub
parent da4f1ff4c8
commit 5828962380
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -377,8 +377,8 @@ vec[6] # NA
# You can find the length of your vector with length()
length(vec) # 4
# You can perform operations on entire vectors or subsets of vectors
vec * 4 # 16 20 24 28
vec[2:3] * 5 # 25 30
vec * 4 # 32 36 40 44
vec[2:3] * 5 # 45 50
any(vec[2:3] == 8) # FALSE
# and R has many built-in functions to summarize vectors
mean(vec) # 9.5