最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

R語言代做編程輔導(dǎo)ASSIGNMENT THREE - BASIC R SKILS(附答案)

2022-12-14 22:30 作者:拓端tecdat  | 我要投稿

全文鏈接:http://tecdat.cn/?p=30904

PROBLEM 1) Comparing Vectors

Description: Given two vectors, the longer will be deteremined and returned. In the event of a tie, the vector called x will be returned

longVec<-function(x,y) {lv=ifelse(length(x)>length(y),x,y) return(lv) }

PROBLEM 2) Intersection Subsets

Script Name: vowelMax Input: Two numeric vectors Output: One numeric vector consisting of only even numbers Error Checking: 1) If either input is empty, return NULL 2) If either vector is not numeric return NULL 3) If the vectors have an empty intersection (length of intersection is 0), return NULL 4) If there are no even numbers in the intersection return NULL>

Description: Given two vectors, find their intersection (numbers common to both) and remove all of the odd numbers and return the even numbers

Hints:
Run the command: help(intersect) For a number x, (x%%2) is zero if x is even and one if x is odd. Look into indexing a vector with logical values

commonEven<-function(x,y) {if(is.null(x) || is.null(y)) return(NULL) else{if(!is.numeric(x) || !is.numeric(y)) return(NULL) else{if(length(intersect(x,y))==0) return(NULL) else{if(min(x%%2)==1 || min(y%%2)==1) return(NULL)

PROBLEM 3) Longest first difference

Script Name: maxDiff Input: x: a numeric vector seqName: a string containing the name of the vector

Output: A nonzero number equal to the maximum absolute difference of the sequence

Error Checking:

  1. If the input is empty, return NULL

  2. If the vector is not numeric, return NULL Messages: Best described by examples. See below:

"|(a[9]-a[8])| = 7 is the maximum absolute difference"

"Input vector must be numeric."

"Sequence is empty"

Hint: Run the command: help(intersect) For a number x, (x%%2) is zero if x is even and one if x is odd. Look into indexing a vector with logical values Description: Given a sequence, {a[j]}, define the maximum absolute difference as maximum absolute difference of {a} = max |(a[j+1]-a[j])| j=1,2,3,...,n-1

---------------------------- Example: Good Case: > e<-c(5,7,10,8,4,0,2,-3,-10) > e [1] ? 5 ? 7 ?10 ? 8 ? 4 ? 0 ? 2 ?-3 -10 > maxDiff(e,"a") [1] "|(a[9]-a[8])| = 7 is the maximum absolute difference" [1] 7 Error case: Nonnumeric vector > maxDiff(c("cat","dog"),"pets") [1] "Input vector must be numeric." NULL Error case: Empty vector > x<-c(2341) > x<-x[-1] > maxDiff(x,"a") [1] "Sequence is empty" NULL End Example-------------------------------maxDiff<-function(x,seqName) {if(is.numeric(x)==FALSE)cat("Input vector must be numeric.") else{if(x[-1]==0)cat("Sequence is empty") else{ Difmax=0;for(i in 1:(length(x)-1)){for(j in (i+1):length(x)){ } } }

PROBLEM 4) Counting vowels in a list a words

Script Name: vowelMax Input: A vector of words (character strings) Output: The word with the most vowels Error Checking: If the vector of words is empty, a message is written saying "Vector of words is empty" and returning NULL

Description: Given a vector of word (character strings), this function finds and returns the word with the most vowels.

vowelMax<-function(a) {if(length(a)==0)cat("Vector of words is empty") vowmax=0for(i in 1:length(a)){ vowc=0;for(j in ?1:nchar(a[i])) { cat


R語言代做編程輔導(dǎo)ASSIGNMENT THREE - BASIC R SKILS(附答案)的評論 (共 條)

分享到微博請遵守國家法律
鹤壁市| 定边县| 平陆县| 固镇县| 凉山| 克什克腾旗| 新营市| 雅安市| 唐海县| 奉化市| 筠连县| 开封县| 普兰店市| 辛集市| 华宁县| 南华县| 旺苍县| 正蓝旗| 基隆市| 淮南市| 南阳市| 藁城市| 内乡县| 灵寿县| 郓城县| 巴彦淖尔市| 定襄县| 普洱| 广饶县| 沭阳县| 青铜峡市| 安吉县| 高雄市| 江川县| 新宾| 翁牛特旗| 海阳市| 洞头县| 长乐市| 陇西县| 延川县|