1 基本统计分析 1.1 描述性统计分析 myvar<-c("mpg","hp","wt") head(mtcars[myvar]) #显示数据框的头部信息 dat<-mtcars[myvar] #查看数据框 1.1.1 方法 (1)简单分析:summary() 结果分析:计算了最值、分位数、均值等 ...
分类:
编程语言 时间:
2021-07-06 16:23:03
阅读次数:
0
# Python数据分析:pandas数据操作和分析案例 ###### 项目介绍: * [ https://www.kaggle.com/openfoodfacts/world-food-facts ](https://www.kaggle.com/openfoodfacts/world-food- ...
分类:
编程语言 时间:
2021-07-02 15:39:04
阅读次数:
0
办公室有一台HP LaserJet 1020p 连接在有线网络上。 我的Manjaro用HP Device Manager怎么也添加不上这个机器(可以看到但添加不上驱动)。最后检查了服务,发现cups没开。 sudo systemctl enable cups sudo systemctl star ...
分类:
其他好文 时间:
2021-06-28 19:26:16
阅读次数:
0
一、来源 Comprehensive genomic resources related to domestication and crop improvement traits in Lima bean. Nature Communications volume 12, Article numbe ...
分类:
其他好文 时间:
2021-06-17 16:44:55
阅读次数:
0
Python3 pandas DataFrame 基本功能讲解 import pandas as pd 导入库 df = pd.DataFrame(data=None, index=None, columns=None, dtype=None, copy=False) 创建一个DataFrame 代 ...
分类:
编程语言 时间:
2021-06-06 18:58:17
阅读次数:
0
反指纹浏览器核心功能:1、浏览器指纹修改2、IP代理 代理类型大致分为三类。 透明代理、普匿代理、透明代理。 高匿代理,能够隐藏用户的真实IP地址,同时不会被识别为代理。 普匿代理,可以隐藏用户真实IP,但会改变请求信息,使对方服务器识别出我们用了动态ip代理。 透明代理,传送的依然是真实IP地址, ...
分类:
其他好文 时间:
2021-06-02 16:38:27
阅读次数:
0
USB2.0IP设计 最近,在学习USB2.0IP的设计,其中包含了CRC校验码的内容,之前学习千兆以太网曾经用到过CRC32校验(https://www.cnblogs.com/Xwangzi66/p/14185143.html),CRC详细原理可见括号的链接,今天则从怎么用工具快速生成Veril ...
分类:
其他好文 时间:
2021-06-02 15:06:59
阅读次数:
0
%load_ext autoreload %autoreload 2 %matplotlib inline %config InlineBackend.figure_format='retina' from __future__ import absolute_import, division, p ...
分类:
编程语言 时间:
2021-05-03 12:48:31
阅读次数:
0
一、线性回归 一、线性回归 ? 假设有数据有 ,其中 , 。其中m为训练集样本数,n为样本维度,y是样本的真实值。线性回归采用一个多维的线性函数来尽可能的拟合所有的数据点,最简单的想法就是最小化函数值与真实值误差的平方(概率解释-高斯分布加最大似然估计)。即有如下目标函数: 其中线性函数如下: ? ...
分类:
其他好文 时间:
2021-04-28 12:19:06
阅读次数:
0
一、Nuget安装log4net --> Install-Package log4net 二、在AssemblyInfo.cs文件中添加log4net.dll的参数。 [assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.co ...