USYD悉尼大学Data1001 R Quiz1解析(算分)

R quiz1

  • 前言
  • Q1
  • Q2
  • Q3
  • Q4
  • Q5
  • 总结


前言

我尽可能的讲解详细,有什么不足或者要改进的地方留言私信我,小编会尽快改进。温故知新的同时,希望能帮助更多的帮助你。(Rquiz算分,Lquiz不算分,后续会出Lquiz的讲解)


Q1

To calculate log(4), which would work in R code?

  • > log(4)
  • > In(4)
  • >Ine(4)
  • LOG(4)

讲解: 把这四个选项每个都放在rstudio里运行一下,只有log(4)能运行出结果。


Q2

Which code is correct?

  • getwd()
  • setwd(x=c(1,2,3))
  • help[getwd]
  • setwd(’…’)

讲解: 比较简单的一个问题,放在Rstudio里运行一下就好。


Q3

What is the answer to the following R code?
x=c(1,2,3,4,5)
sum(x) + sort(x)[2]

  • 17
  • 16
  • 15
  • 14

讲解: 放在rstudio里运行一下就好

x=c(1,2,3,4,5)
sum(x)+sort(x)[2]
#outpot:17

Q4

x=c(-1,2,3,-4,5)
Which commands sorts the data?

  • sort(x)
  • Sort(x)
  • SORT(x)
  • sort(x)

讲解: 放在Rstudio里运行一下,只有sort(x)没有出错。
在这里插入图片描述


Q5

"Simpson’s Paradox occurs when relationships between percentages in subgroups are the same, when the subgroups are combined, because of a confounding or lurking variable".

  • True
  • False

讲解: 理论题。
题目翻译:当子组中的百分比之间的关系相同时,或者由于混淆或潜伏变量而将子组合并时,就会发生“辛普森悖论”。


总结

还是比较基础的东西,慢慢理解,慢慢消化。

你可能感兴趣的:(悉尼大学data1001,python,恰饭,经验分享,程序人生)