Use app×
QUIZARD
QUIZARD
JEE MAIN 2026 Crash Course
NEET 2026 Crash Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
92 views
in R by (178k points)
How can I create a vector in R?

Please log in or register to answer this question.

1 Answer

0 votes
by (178k points)

In R, you can create a vector using the c() function, which stands for "combine" or "concatenate". The c() function allows you to combine multiple values into a single vector. Here are a few examples:

  1. Numeric Vector:
numbers <- c(1, 2, 3, 4, 5)  # Creates a numeric vector with values 1, 2, 3, 4, 5
 
  1. Character Vector:
names <- c("John", "Alice", "Bob")  # Creates a character vector with names "John", "Alice", "Bob"
 
  1. Logical Vector:
logical_values <- c(TRUE, FALSE, TRUE, TRUE)  # Creates a logical vector with values TRUE, FALSE, TRUE, TRUE
 
  1. Vector with Mixed Data Types:
mixed_vector <- c(1, "hello", TRUE)  # Creates a vector with numeric, character, and logical values
 

You can also create a sequence of numbers using the : operator. For example:

sequence <- 1:10  # Creates a numeric vector with numbers from 1 to 10
 

Once you have created a vector, you can perform various operations on it, such as indexing, subsetting, applying functions, and more.

Related questions

0 votes
1 answer
asked Jun 9, 2023 in R by kvdevika (178k points)
0 votes
1 answer
0 votes
1 answer
asked Jun 9, 2023 in R by kvdevika (178k points)
0 votes
1 answer
0 votes
1 answer

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

Categories

...