There are nn points on a coordinate axis OXOX . The ii -th point is located at the integer point xixi and has a speed vivi . It is guaranteed that no ...
分类:
其他好文 时间:
2020-03-09 10:31:36
阅读次数:
79
import numpy as np import pandas as pd x=np.array([1,2,3]).reshape(1,3)#调节形状为二维数组 y=np.array([4,5,6]).reshape(1,3) z=np.array([7,8,9]).reshape(1,3) pr ...
分类:
其他好文 时间:
2020-03-09 01:18:23
阅读次数:
64
tfidf原理的简单描述:以一个图书馆为例,tf: 该单词在图书馆所有书里出现的频率idf: log((图书馆所有书的数量+平滑系数)/(该单词出现过的书的数量+平滑系数)+1)tfidf = tf*idf import numpy as np from collections import def ...
分类:
其他好文 时间:
2020-03-08 09:47:56
阅读次数:
114
注意:无特殊说明,Flutter版本及Dart版本如下:Flutter版本:1.12.13+hotfix.5Dart版本:2.7.0StackStack组件可以将子组件叠加显示,根据子组件的顺利依次向上叠加,用法如下:Stack(children:<Widget>[Container(height:200,width:200,color:Colors.red,),Container(h
分类:
其他好文 时间:
2020-03-07 10:04:35
阅读次数:
60
红色代码为单位数据代码,代码示例: //自评与考核柱状图 checkoption = { /* * title: { text: '自评与考核' }, */ legend : { left : 300, top : -5 }, tooltip : { trigger : 'axis', format ...
分类:
其他好文 时间:
2020-03-06 11:22:27
阅读次数:
64
import numpy as np #1.append a=np.array([1,2,3,4,5,6,7,8,9]) print(np.resize(a,(3,3)),"\n ")#改变数组的形状 b=np.array([[1,2,3],[4,5,6]]) print(np.append(b,1 ...
分类:
编程语言 时间:
2020-03-05 20:45:31
阅读次数:
71
改变x轴y轴的颜色 1 xAxis : [ 2 { 3 type : 'category', 4 data : ['1月','2月','3月','4月','5月','6月','7月','8月','9月','10月','11月','12月'], 5 //设置轴线的属性 6 axisLine:{ 7 l ...
分类:
其他好文 时间:
2020-03-05 13:16:56
阅读次数:
41
1.html页面引入需要的文件 <!-- ChartJS --> <script th:src="@{/bower_components/chart.js/Chart.js}"></script> <!-- AdminLTE dashboard demo (This is only for demo ...
分类:
其他好文 时间:
2020-03-01 19:39:38
阅读次数:
478
注意:无特殊说明,Flutter版本及Dart版本如下:Flutter版本:1.12.13+hotfix.5Dart版本:2.7.0基础用法在展示大量数据的时候我们第一会想到使用ListView,如果你觉得ListView比较单一、枯燥,你可以使用ListWheelScrollView,ListWheelScrollView和ListView同源,但它的渲染效果类似于车轮(或者滚筒),它不是在平面
分类:
其他好文 时间:
2020-03-01 01:02:19
阅读次数:
84
option = { title: { left: '1%', text: '考试成绩', textStyle: { //标题颜色 color: '#6E6E6E', fontSize: '13px cursive', } }, tooltip: { trigger: 'axis' }, legen ...
分类:
其他好文 时间:
2020-02-27 09:12:11
阅读次数:
79