We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
code
借鉴早交作业同学的作业,总结各位的思路大概有3种: ①Python内置正则表达式模块re完成; ②中文文本处理包zhon.hanzi的符号处理puntuation,最后用Counter的most_common完成统计 ③其他库,如nltk,operator
感觉Re强大但是复杂,驾驭比较困难;对我来说逻辑和使用比较清楚的是第二种,在此基础上,完成基础任务
The text was updated successfully, but these errors were encountered:
笔记: 使用的库:sympy 符号计算的pyton库,目标是成为全功能的计算机代数系统。
Symbol()在sympy中,所有的变量都要经过声明才能使用。
Symbol()
from sympy import Symbol x = Symbol('x')
from sympy import *把sympy中所有的东西都加载进来
from sympy import *
diff(func,var)计算微积分(differentiation)
diff(func,var)
笔记: 用到的库:numpy
核心:数组(arrays) 数组(array)和列表(list)
多维数组:ndarray 2个组成部分:①数据本身,②描述数据的元数据 数据处理过程中,原始数据不受影响,变化的是元数据 二维数组:[[]]一个列表的列表
numpy 库中「向量化」(vectorization)的概念
完成任务的思路: 生成正太分布数组 s=np.random.normal(mu,sigma,100) #均值,标准差,样本量 ndarray中的boolean array indexing用向量化的方法完成任务
NumPy入门详解 使用puthon进行科学计算:NumPy入门 SymPy:使用python帮你导烦人的数学公式 python+numpy实现函数向量化 numpy.random.normal
Sorry, something went wrong.
yiiina
No branches or pull requests
code
借鉴早交作业同学的作业,总结各位的思路大概有3种:
①Python内置正则表达式模块re完成;
②中文文本处理包zhon.hanzi的符号处理puntuation,最后用Counter的most_common完成统计
③其他库,如nltk,operator
感觉Re强大但是复杂,驾驭比较困难;对我来说逻辑和使用比较清楚的是第二种,在此基础上,完成基础任务
The text was updated successfully, but these errors were encountered: