一.Matplotlib的图像的结构图: 1. 第一层是底层的容器层,主要包括Canvas、Figure、Axes; 2. 第二层是辅助显示层,主要包括axis、spines、grid、legend、title等; 3. 第三层为图像层,即通过plot、scatter等方法绘制的图像。 2.Canv ...
分类:
编程语言 时间:
2020-05-19 20:31:12
阅读次数:
78
我认为的跨域: 浏览器从一个域名的网页去请求另一个域名的资源时,域名、端口、协议任一不同,都是跨域 跨域相关的报错: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' ...
分类:
其他好文 时间:
2020-05-18 16:55:18
阅读次数:
60
https://www.cnblogs.com/jerry116/p/8969987.html optional "sudo iwlist wlx08beac06c8a9 scan | grep ESSID" "sudo nano /etc/wpa_supplicant/wpa_supplicant ...
分类:
其他好文 时间:
2020-05-18 16:38:32
阅读次数:
63
pom文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
数据库 时间:
2020-05-17 09:22:43
阅读次数:
83
系统启动和内核管理 1 CentOS 6 的启动管理 1.1 Linux 组成 kernel 实现进程管理、内存管理、网络管理、驱动程序、文件系统、安全功能等功能 rootfs 包括程序和 glibc 库 程序:二进制执行文件 库:函数集合, function, 调用接口(头文件负责描述) 1.2 ...
分类:
其他好文 时间:
2020-05-16 00:23:00
阅读次数:
85
%% 清屏 clc; clear all; close all; %% 数据预处理 data = importdata('studentscores.csv'); x = data.data(:,1); y = data.data(:,2); % 原始数据的散点图 figure plot(x,y,' ...
分类:
其他好文 时间:
2020-05-15 21:50:10
阅读次数:
86
一,配置Tomcat过程出现No artifacts configured的问题 1.在 Edit Configurations中选择Deployment 中添加xxx.war(exploded),即上图中:Deployment >点击如图示的“+”号 ...
分类:
其他好文 时间:
2020-05-15 19:47:00
阅读次数:
55
1,使用配置1.1 引入mybatis整合spring的jar包 org.mybatis mybatis-spring ${mybatis-spring.version} org.mybatis my... ...
分类:
编程语言 时间:
2020-05-15 17:47:55
阅读次数:
68
1. HTML发展历史介绍 2. 浏览器支持 2.1 新增标签支持 在html5 中新增了很多的标签,其中包括8个新增语义结构标签。header, section, footer, aside, nav, main, article, figure ,但是在IE的一些版本中并不能够有效的支持。 /* ...
分类:
Web程序 时间:
2020-05-11 21:40:59
阅读次数:
76
exercise1 首先下载.csv文件的数据集,该数据集是基于如下背景: In this notebook, we'll work with a dataset of historical FIFA rankings for six countries: Argentina (ARG), Braz ...
分类:
其他好文 时间:
2020-05-10 21:24:49
阅读次数:
88