摘要:
pyplot, Matplotlib 软件包中子包,提供了一个类似MATLAB的绘图框架。支持 Python 语言。 gridspace:A grid layout to place subplots within a figure.在同一幅图中画多个子图。 class matplotlib.gri 阅读全文
摘要:
汉明距离是使用在数据传输差错控制编码里面的,汉明距离是一个概念,它表示两个(相同长度)字符串对应位置的不同字符的数量,我们以d(x,y)表示两个字x,y之间的汉明距离。对两个字符串进行异或运算,并统计结果为1的个数,那么这个数就是汉明距离。 You are given two strings of 阅读全文
摘要:
Introducing magrittr Stefan Milton Bache November, 2014 Abstract The magrittr (to be pronounced with a sophisticated french accent) package has two ai 阅读全文
摘要:
A Forward-Pipe Operator for R #1.基本用法 x %>% f 等价于 f(x) x %>% f(y) 等价于 f(x, y) x %>% f %>% g %>% h 等价于 h(g(f(x))) x %>% f(y, .) 等价于 f(y, x) x %>% f(y, 阅读全文