码迷,mamicode.com
首页 >  
搜索关键字:legend    ( 577个结果
Grafana 的一些使用技巧
原文链接 文章目录 数值类型的常用指标含义 总量误区 误差 模板变量 模板变量的写法 新建模板变量 模板变量的隐藏玩法 grafana 面板编辑器 Metrcis Legend Display 高级函数 聚合单个查询的多条匹配曲线的总量 Combine -> sumSeries 时间线迁移 Tran ...
分类:其他好文   时间:2020-04-24 20:05:36    阅读次数:910
豆瓣TOP250爬取及分析
一、数据采集 1、代码展示 import requestsimport refrom bs4 import BeautifulSoupimport pandas as pdimport timepaiming=[]juming=[]shijian=[]daoyan=[]pingfen=[]pingr ...
分类:其他好文   时间:2020-04-23 20:56:29    阅读次数:66
K均值算法
1. 机器学习的步骤 数据,模型选择,训练,测试,预测 2. 安装机器学习库sklearn pip list 查看版本 python -m pip install --upgrade pip pip install -U scikit-learn pip uninstall sklearn pip ...
分类:编程语言   时间:2020-04-16 16:55:07    阅读次数:128
echarts中 legend 自定义方法和单独定义每个图例的样式和宽高
单独定义echarts中每个图例的样式,自定义图例的点击方法 //用不同样式的图例用数组写对应图例的样式 legend:[{ top: "15%", right: "24%", textStyle: { color: "#3BAEFE", fontSize: 14, fontFamily: "微软雅 ...
分类:其他好文   时间:2020-04-14 18:24:20    阅读次数:179
前端小白的学习之路--HTML学习
HTML的补充学习 1. meta与base 2. img 3. 表单 ~~~ 1. 表单元素都是用form包裹,fieldset是一个框框,legend是框框的标题 2. label元素的属性for绑定的是id 3. 单选框的name属性一样的话,就是同时只能选一个 ~~~ 4. iframe ~ ...
分类:Web程序   时间:2020-04-12 23:04:06    阅读次数:148
QCustomPlot图形和图例同步方法
QCustomPlot图形和图例同步前言 我现在有几条折线,折线和图例一一对应,不管点击图例或者折线,相关的都高亮 QCustomPlot图形和图例同步方法 // 链接信号槽 m_plot即为QCustomPlot对象 connect(m_plot, SIGNAL(selectionChangedB ...
分类:其他好文   时间:2020-04-08 19:14:15    阅读次数:178
【tensorflow2.0】处理图片数据-cifar2分类
1、准备数据 cifar2数据集为cifar10数据集的子集,只包括前两种类别airplane和automobile。 训练集有airplane和automobile图片各5000张,测试集有airplane和automobile图片各1000张。 cifar2任务的目标是训练一个模型来对飞机air ...
分类:其他好文   时间:2020-04-06 20:48:30    阅读次数:159
绘制不同样式不同颜色的线
1 import matplotlib.pyplot as plt 2 import numpy as np 3 x = np.linspace(0,10,100) 4 #添加legend()图例,给plot方法添加参数label 5 plt.plot(x,x+0,'--g',label='--g' ...
分类:其他好文   时间:2020-04-06 17:38:20    阅读次数:80
python matplotlib 中ax.legend()用法解释
ax.legend()作用:在图上标明一个图例,用于说明每条曲线的文字显示 import matplotlib.pyplot as plt import numpy as np x = np.arange(10) fig = plt.figure() ax = plt.subplot(111) fo ...
分类:编程语言   时间:2020-04-05 22:17:33    阅读次数:545
python plb 教程 实现折线图 (令含有 题目,标识,颜色,中文乱码解决)源码
代码: 1 # -*- coding: utf-8 -*- 2 import numpy as np 3 import matplotlib.pyplot as plt 4 import matplotlib as mpl 5 mpl.rcParams['font.sans-serif'] = [' ...
分类:编程语言   时间:2020-04-05 20:47:36    阅读次数:93
577条   上一页 1 ... 3 4 5 6 7 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!