library(package="car") data <- read.csv("C:\\users\\mike1\\desktop\\data\\RData\\hald水泥数据.csv", header=T, sep=",",fileEncoding = "utf-8", stringsAsFac ...
分类:
其他好文 时间:
2020-07-01 00:07:17
阅读次数:
74
在 logback 中,用 Layout 来代表日志打印格式。比如说,PatternLayout 能够识别以下这条格式:%-4relative [%thread] %-5level %logger{32} - %msg%n 然后打印出来的格式效果是:176 [main] DEBUG manual.a ...
分类:
编程语言 时间:
2020-06-30 20:54:36
阅读次数:
47
函数: 1.函数声明 kotlin中的函数使用fun关键字声明: fun double(x: Int): Int { return 2 * x } 2.函数用法 调用函数使用传统的方法: val result = double(2) 调用成员函数使用点表示法: Stream().read() // ...
分类:
其他好文 时间:
2020-06-30 17:16:06
阅读次数:
71
==环境== 系统:Linux Centos7.2 RocketMQ版本:4.6.1 ==集群形态== ==修改前配置文件== broker-a.properties brokerClusterName=rexel brokerName=broker-a brokerId=0 deleteWhen= ...
分类:
其他好文 时间:
2020-06-30 13:19:08
阅读次数:
287
#include <iostream> #include <fstream> #include<vector> using namespace std; /** * @brief 读取二进制文件中的数据 * @param data_fname 二进制文件名 * @param rows * @para ...
分类:
编程语言 时间:
2020-06-30 13:05:07
阅读次数:
72
分享两种报表创建方式: 使用view 方式创建报表,即在数据库中创建view视图,非实体表,odoo中需要设置_auto=False create view view_table as ...; 使用实体表的方式,创建报表 然后再实体表查询时,即调用read_search方法时,重新往实体表填充数据 ...
分类:
其他好文 时间:
2020-06-30 13:03:49
阅读次数:
80
1、准备工作 1、安装 gcc 、vcpkg 等。 2、下载最新的 GDAL 源码。 3、使用 vcpkg 安装第三方库。 ./vcpkg install tiff install sqlite3[tool] ./vcpkg install geos ./vcpkg install curl ./v ...
分类:
系统相关 时间:
2020-06-30 13:00:36
阅读次数:
183
import pandas as pdf = open('D:/SAB/Desktop/数据分析.csv')df=pd.read_csv(f)df import pandas as pdf = 'D:/SAB/Desktop/数据分析.xlsx'df= pd.read_excel(f)df ...
分类:
编程语言 时间:
2020-06-30 12:54:48
阅读次数:
67
AtomicReference An object reference that may be updated atomically. The AtomicReference class provides reference objects that may be read and written ...
分类:
其他好文 时间:
2020-06-30 12:37:08
阅读次数:
65
// Body represents the response body. // // The response body is streamed on demand as the Body field // is read. If the network connection fails or t ...
分类:
其他好文 时间:
2020-06-30 11:07:15
阅读次数:
64