查看版本 https://answers.ros.org/question/330033/is there a way to know which version of autoware is running/ cd autoware_dir/src/autoware/common git desc ...
分类:
其他好文 时间:
2020-03-06 10:27:48
阅读次数:
44
node相关 kubectl get nodes -o wide kubectl describe node node01 容器命令 kubectl get pods -A -o wide kubectl describe pod edgedns-xxx -n openname kubectl ex ...
分类:
其他好文 时间:
2020-03-05 20:47:54
阅读次数:
112
[TOC] "原文地址" Keywords 七、关键词 This section describes new options user have when defining keyword lists. Number of keyword lists has been expanded to eig ...
分类:
其他好文 时间:
2020-03-02 20:50:10
阅读次数:
84
set PATH=C:\Program Files\Java\jdk1.8.0_201\bin;@call kafka-consumer-groups.bat --bootstrap-server localhost:9092 --describe --group test-uat --comman ...
分类:
其他好文 时间:
2020-02-28 13:58:03
阅读次数:
59
python使用MySQL主要有两个模块,pymysql(MySQLdb)和SQLAchemy。 pymysql(MySQLdb)为原生模块,直接执行sql语句,其中pymysql模块支持python 2和python3,MySQLdb只支持python2,两者使用起来几乎一样。 SQLAchemy ...
分类:
数据库 时间:
2020-02-25 12:38:05
阅读次数:
92
最近学习python数据分析,遇到了四分位数计算问题,因四分位数计算公式不一致,导致结果不一样,坑爹的百度只给了一种计算方法,容易迷惑初学者,故总结如下: 计算方法三个四分位数的确定:先按从小到大方法排序,然后使用下列方法。方法1:n+1法 Q1的位置= (n+1) × 0.25 Q2的位置= (n ...
分类:
其他好文 时间:
2020-02-23 20:35:47
阅读次数:
729
题目描述 定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))。 注意:保证测试中不会当栈为空的时候,对栈调用pop()或者min()或者top()方法。 import java.util.Stack; public class Solution { ...
分类:
其他好文 时间:
2020-02-21 22:18:34
阅读次数:
63
一.查看特征数据类型,有没有文本型变量需要处理 train_data.info() train_data.describe(include="all",percentiles=[0.5]).T.round(2) 二.查看缺失值数量或占比 三.查看标签分布 # 查看标签分布 df['label'].v ...
分类:
其他好文 时间:
2020-02-20 22:10:48
阅读次数:
52
题目描述 定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))。 注意:保证测试中不会当栈为空的时候,对栈调用pop()或者min()或者top()方法。 1 import java.util.*; 2 3 public class Solution ...
分类:
其他好文 时间:
2020-02-20 16:48:33
阅读次数:
46
#include<cstdio> #include<iostream> using namespace std; int n,x,a,b; int main() { cin>>n>>x>>a>>b; double ans=n*(a*x*1.0/100+b*(100-x)*1.0/100); prin ...
分类:
其他好文 时间:
2020-02-19 20:59:23
阅读次数:
37