最新 最热

R语言-功效分析(t检验)

我们进行研究前,经常会被问到:对于我的研究,现在有x个可用的受试者,这样的研究值得做吗?或者“对于我的研究到底需要几个受试者呢?“这类问题需要功效分析进行解决。...

2020-08-06
1

编程之路_R

list.files(getwd(),pattern ="*.[R|v]$") ###可以匹配正则表达式

2020-08-06
1

R语言入门之效力分析(Power Analysis)

效力分析是实验设计阶段非常重要的一部分内容,它主要是帮助我们确定在指定显著性条件下实验所需要的样本量并评估该实验设计的统计效力。通过效力分析,我们也能给出在现有的样本量下该实验结论的可靠性。如果结论的可靠...

2020-08-06
1

Spark scala 操作

基本操作创建RDDvar data = Array(1,2,3,4) //数组var distData = sc.parallelize(data,3) //创建RDDdistData.collect //收集展示distData.take(1) //取出第一行/数组中一个数据占一行2.读取文件数据......

2020-08-04
1

Computer Graphics note(3):视口变换&光栅化

Games101 Lecture5-6-7 在M(模型)V(视图)P(投影)变换之后,得到[−1,1]3[-1,1]^3[−1,1]3,接下来就是将其映射到屏幕空间上去。 M变换:https://blog.csdn.net/Enterprise_/article/details/106880754 VP变换:ht......

2020-08-02
1

从0开始做播放器---音频播放有杂音且音调异常

我的播放器,音频像是电视信号不好,需要动一下天线,有那种沙沙声。 明确音频数据问题,在get音频数据处找问题。

2020-07-29
1

python基础 -- acm

The input will consist of a series of pairs of integers a and b,separated by a space, one pair of integers per line.

2020-07-27
1

PAT 1028 List Sorting (25分) 用char[],不要用string

Excel can sort records according to any column. Now you are supposed to imitate this function.

2020-07-14
1

PAT 1049 Counting Ones (30分) 编程之美--1的个数

The task is simple: given any positive integer N, you are supposed to count the total number of 1's in the decimal form of the integers from 1 to N. For example...

2020-07-14
0

PAT 1041 Be Unique (20分)利用数组找出只出现一次的数字

Being unique is so important to people on Mars that even their lottery is designed in a unique way. The rule of winning is simple: one bets on a number chosen f...

2020-07-14
1