摘要:
一、文件/文件夹管理ls 列出当前目录文件(不包括隐含文件)ls -a 列出当前目录文件(包括隐含文件)ls -l 列出当前目录下文件的详细信息cd .. 回当前目录的上一级目录cd - 回上一次所在的目录cd ~ 或 cd 回当前用户的宿主目录mkdir 目录名 创建一个目录rmdir 空目录名 ... 阅读全文
摘要:
Windows网络命令行程序这部分包括:使用 ipconfig /all 查看配置 使用 ipconfig /renew 刷新配置 使用 ipconfig 管理 DNS 和 DHCP 类别 ID 使用 Ping 测试连接 使用 Arp 解决硬件地址问题 使用 nbtstat 解决 NetBIOS 名... 阅读全文
摘要:
要画出如上图(注意原点有边距),怎么办呢?简单而优雅,请看代码:#!/usr/bin/env python# coding=utf-8import matplotlib.pyplot as pltdef loadData(): x = [1,2,3,4,5] y = [1,4,8,9,7... 阅读全文
摘要:
LinearRegressionfits a linear model with coefficientsto minimize the residual sum of squares between the observed responses in the dataset, and the re... 阅读全文