Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please use R. Write a function called by_type() that takes an atomic vector as input and an optional argument sort with default value FALSE. The

Please use R.

Write a function called by_type() that takes an atomic vector as input and an optional argument sort with default value FALSE. The function looks at each element in the atomic vector and sees if it can coerce them into integer or floating-point values. The function outputs a list that has separated the values into a list with integers, doubles, and character values. If the optional argument sort is TRUE, then it will sort the results of each vector.

For example, if x is the following vector, x <- c("house", "6", "2.2", "a", "3.4", "1") Then the output of by_type(x) will be a list:

$integers

[1] 6 1 1

$doubles

[1] 2.2 3.4

$character [1]

"house" "a"

If sort = TRUE then the output will sort each section and return: by_type(x, sort = TRUE)

$integers

[1] 1 6

$doubles

[1] 2.2 3.4

$character

[1] "a" "house"

If the vector contains logical TRUE/FALSE values, those should be put into the character section.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Databases And Information Systems Uropean Conference Adbis 2020 Lyon France August 25 27 2020 Proceedings Lncs 12245

Authors: Jerome Darmont ,Boris Novikov ,Robert Wrembel

1st Edition

3030548317, 978-3030548315

More Books

Students also viewed these Databases questions