Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Arithmetic Operations with Vectors | Basic Data Types and Vectors
R Introduction: Part I

book
Arithmetic Operations with Vectors

Vectors in R offer a significant advantage due to their flexibility with various operations. For instance, if you have two vectors of the same length, you can easily perform addition or subtraction on an element-by-element basis.

Additionally, vectors can undergo arithmetic operations with single numbers, which apply the operation to each element of the vector. For example, let's create a vector with the numbers 10, 20, 30 and add 40, 25, 5 to each corresponding element:

# Vectors
a <- c(10, 20, 30)
b <- c(40, 25, 5)
# Addition
c <- a + b
c
123456
# Vectors a <- c(10, 20, 30) b <- c(40, 25, 5) # Addition c <- a + b c
copy

Now, let's go ahead and multiply each element by 2:

a <- c(10, 20, 30)
b <- c(40, 25, 5)
c <- a + b
# Multiplication
d <- c * 2
d
123456
a <- c(10, 20, 30) b <- c(40, 25, 5) c <- a + b # Multiplication d <- c * 2 d
copy

R also provides a variety of aggregate and statistical functions. Let's explore two of the most common ones:

  • sum() - calculates and returns the sum of all vector elements;
  • mean() - computes and returns the average value of the vector elements.

We will proceed with our previous example and calculate the sum of all vector elements:

a <- c(10, 20, 30)
b <- c(40, 25, 5)
c <- a + b
d <- c * 2
# Calculating the sum
sum(d)
123456
a <- c(10, 20, 30) b <- c(40, 25, 5) c <- a + b d <- c * 2 # Calculating the sum sum(d)
copy
Tarefa

Swipe to start coding

Let's revisit our example with a small local store. This time we have data on the number of sales.

ItemPriceItems sold
Sofa$3405
Armchair$1507
Dining table$1153
Dining chair$4515
Bookshelf$1608
  1. Construct a vector called sold with the respective values from the Items sold column.
  2. Calculate the revenue by multiplying the prices and sold vectors and then output the result.
  3. Display the total sum of the revenue vector.

Solução

# Vectors of prices and names
prices <- c(340, 150, 115, 45, 160)
items <- c('Sofa', 'Armchair', 'Dining table', 'Dining chair', 'Bookshelf')
names(prices) <- items
# Create vector sold
sold <- c(5, 7, 3, 15, 8)
# Calculate revenue per item
revenue <- prices * sold
# Output the total revenue
cat("The total revenue is", sum(revenue))

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 10
# Vectors of prices and names
prices <- c(340, 150, 115, 45, 160)
items <- c('Sofa', 'Armchair', 'Dining table', 'Dining chair', 'Bookshelf')
names(prices) <- items
# Create vector sold
___ <- ___(5, 7, ___, 8)
# Calculate revenue per item
___ <- ___ * ___
# Output the total revenue
cat("The total revenue is", ___(___))
toggle bottom row
some-alt