1、首先,将chart控件添加到窗口。 2、设置chart - series 主要t属性: 2.1 IsXValueIndexed = true; 2.2 XValueType = Time; 3、编写初始化函数: Private Sub InitChart() Dim r As Random = ...
分类:
其他好文 时间:
2020-03-13 11:33:38
阅读次数:
81
一. 升级前准备: 1.查看兼容性列表 https://www.vmware.com/resources/compatibility/sim/interop_matrix.php#upgrade&solution=1 2. 请迁移出所有虚拟机,并进入维护模式 二. 安装文件升级 1. 准备安装/升级 ...
分类:
其他好文 时间:
2020-03-13 01:03:35
阅读次数:
359
主要涉及到的内容有:数据处理(对空白数据进行填充:Imputer)、自定义转换器、pipeline的编写以及采用SVC及RandomForestClassifier进行分类预测 采用的数据集来自Kaggle的坦克尼克号的预测(Titanic challenge ) 读取数据 import os TI ...
分类:
其他好文 时间:
2020-03-12 20:29:03
阅读次数:
106
应该属于sequence classificagtion 问题 https://monkeylearn.com/text-classification/ https://machinelearningmastery.com/start-here/#deep_learning_time_series ...
分类:
其他好文 时间:
2020-03-12 19:16:08
阅读次数:
70
人生苦短,我用 Python 前文传送门: "小白学 Python 数据分析(1):数据分析基础" "小白学 Python 数据分析(2):Pandas (一)概述" "小白学 Python 数据分析(3):Pandas (二)数据结构 Series" "小白学 Python 数据分析(4):Pan ...
分类:
编程语言 时间:
2020-03-12 10:07:50
阅读次数:
78
calHe <- function(fre, filename = "hets.txt"){ pops = row.names(fre) loci = unique(as.matrix(as.data.frame(strsplit(names(fre), split = ".", fixed = T ...
分类:
其他好文 时间:
2020-03-11 23:49:03
阅读次数:
58
1105 Spiral Matrix (25分) This time your job is to fill a sequence of N positive integers into a spiral matrix in non increasing order. A spiral matrix ...
分类:
其他好文 时间:
2020-03-11 23:40:07
阅读次数:
75
题意: 输入n行数,没行由2*n个数,表示一个坐标(x,y)。 如果x和y 1表示从该点(i,j)出发,按照构造的前移动不会停下。 否则就要到点(x,y)处停下。 题解: 首先处理-1 枚举每个-1的坐标,判断四个方向是否存在-1的情况。如果不存在就可以结束了,否则就将移动方向保存到棋盘中。 然后处 ...
分类:
其他好文 时间:
2020-03-10 21:51:59
阅读次数:
58
reshape(行数,列数)常用来更改数据的行列数目 一般可用于numpy的array和ndarray, pandas的dataframe和series(series需要先用series.values把对象转化成ndarray结构) 那么问题来了reshape(-1,1)是什么意思呢?难道有-1行? ...
分类:
编程语言 时间:
2020-03-10 14:01:19
阅读次数:
96
Here is a famous story in Chinese history. "That was about 2300 years ago. General Tian Ji was a high official in the country Qi. He likes to play hor ...
分类:
其他好文 时间:
2020-03-09 20:48:05
阅读次数:
56