摘要:
解决方案: 读写文本格式的数据: pandas 提供了一些用于将表格型数据读取为DataFrame对象的函数 pandas 中的解析函数 函数的选项可以划分为以下几个大类 索引:将一个或多个列当做返回的DataFrame处理,以及是否从文件、用户获取列名 类型推断和数据转换:包括用户定义值的转换、缺 阅读全文
摘要:
目录 1 描述性统计是什么?2 使用NumPy和SciPy进行数值分析 2.1 基本概念 2.2 中心位置(均值、中位数、众数) 2.3 发散程度(极差,方差、标准差、变异系数) 2.4 偏差程度(z-分数) 2.5 相关程度(协方差,相关系数) 2.6 回顾3 使用Matplotlib进行图分析 阅读全文
摘要:
#!/bin/bashsh /home/hwjc/RSA/release2017-02-23/release2017-02-23/install.shsh /etc/init.d/mqtt.shifconfig 更改 vi /etc/profile 加至末尾:echo yhn!#!%!^ | sud 阅读全文
摘要:
1 Oracle数据库 1.1 Oracle环境配置&客户端连接 1.1.1 下载安装Oracle绿色版客户端instantclient: 到oracle官网下载instantclient basic包,解压缩到E:\ProgramFile\instantclient; 1.1.2 设置环境变量: 阅读全文
摘要:
想用python连接Oracle并查询数据表,就写了个Demo。参考了以下网址。 Python学习之 cx_Oracle学习记录 一 http://my.oschina.net/bxxfighting/blog/386578 python——连接Oracle数据库 http://www.cnblog 阅读全文
摘要:
1.统计函数库 collections 调函数Counter a = [1,2,3,4,5,6,7,2,3,4,5,5] list列表 print (a[-2]) from collections import Counter 统计列表里重复的数据个数 print(Counter(a)) 打印数据个 阅读全文
摘要:
http://study.163.com/course/courseLearn.htm?courseId=1003664056#/learn/video?lessonId=1048567028&courseId=1003664056 Anaconda--python开发环境手动安装python类库: 阅读全文
摘要:
TensorFlow是什么? TensorFlow是Google开源的第二代用于数字计算(numerical computation)的软件库。它是基于数据流图的处理框架,图中的节点表示数学运算(mathematical operations),边表示运算节点之间的数据交互。TensorFlow从字 阅读全文
摘要:
chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。 使用语法:chkconfig [--add][--del][--list][系统服务] 或 chkconfig [--level <等级代号 阅读全文
摘要:
1.[root@lc~]# tshark Running as user "root" and group "root". This could be dangerous. Capturing on eth0 tshark: Unknown message from dumpcap, try to 阅读全文
摘要:
设置开机启动示例: # touch /etc/init.d/rc.local 设置为可执行: # chmod +x /etc/init.d/rc.local 用 update-rc.d 设置启动级别: # update-rc.d rc.local start 99 2 3 4 5 . stop 99 阅读全文
摘要:
cd /home/dpf 1.vi startup.sh #!/bin/shecho "hello world" >> /home/dpf/test.txt vi mqtt.sh #!/bin/sh/home/dpf/Desktop/Udp_Single_Async_Mqtt_yuan/hwjc_u 阅读全文
摘要:
1.vi /home/dpf/mqtt.sh #!/bin/sh/home/dpf/Desktop/Udp_Single_Async_Mqtt_yuan/hwjc_udp_receive_mqtt & 2.系统脚本可以放置在/etc/rc.d/init.d 中并建立/etc/rc.d/rc?.d 链 阅读全文