摘要:
# Levenshtein module ## distance(s1, s2, *, weights=(1, 1, 1), processor=None, score_cutoff=None) - 参数:s1和s2代表两个字符串,weights=(1,1,1)中的1分别代表对插入、删除和替换的权重 阅读全文
摘要:
获取local中第n个元素 local somename "a b c d e" // 将这几个字符赋予给somename local element: word #th of `somename' // 将somename中第#th个字符赋予给element 阅读全文
摘要:
Covriance 两个独立随机变量的协方差为零,但协方差为零不一定意味着两个变量独立。 协方差只衡量线性相关 Matrix Algebra 矩阵的求导规则及证明参见: Matrix Differentiation note: 已保存至百度云 with and without replacement 阅读全文
摘要:
查找并提取查找结果 gen age_low = real(ustrregexs(0)) if ustrregexm(年龄,".*(?=-)") 其中,年龄为字符型变量,包含了类似于“18-25岁“这样的字符。 ustrregexm命令可以进行正则匹配,当符合匹配时返回1,否则为0,因此该命令不能范围 阅读全文
摘要:
# Pycharm设置Conda环境 https://www.jetbrains.com/help/pycharm/conda-support-creating-conda-virtual-environment.html # Excel表合并 ``` import pandas as pd imp 阅读全文
摘要:
# mat list 与matlist的区别: - `matlist` is an extension of the matrix list command。 - `mat list` 只能打印一个完整的矩阵,而matlist则可以根据行列数或者行列名打印部分矩阵。 - `matlist` 有更多的 阅读全文