有时候看见很多论文中有那种散点密度图,还有拟合线,感觉瞬间一张图里面信息很丰富,特别是针对数据很多的时候,散点图上的点就会存在很多重叠,这时候比较难以看出其分布特征,所以叠加点密度的可视化效果还是很有必要的。 1 基本 基本的R语言:使用plot()函数即可 # Create data data = ...
分类:
其他好文 时间:
2020-02-14 22:49:37
阅读次数:
358
仅仅针对Mybaties PageHelperi分页,报错如下: select * fr0m user limit ?,? limit ? Caused by: com.alibaba.druid.sql.parser.ParserException: syntax error, error in ...
分类:
其他好文 时间:
2020-02-14 22:49:22
阅读次数:
126
bean 文件: public class Employee { private Integer id; private String lastName; private Integer gender; private String email; private Integer dId; } pub ...
分类:
编程语言 时间:
2020-02-14 22:37:55
阅读次数:
186
个人测试发现undertow 和 tomcat 性能都差不多,但是内存占用会少一点(大概少了10%),尝试换上去测一下,没发现什么毛病,下面记录一下切换使用的要点。 1. 排除tomcat 依赖 <dependency> <groupId>org.springframework.boot</grou ...
分类:
编程语言 时间:
2020-02-14 18:43:52
阅读次数:
128
一、几种请求方式 Http请求 ~~~ wx.request({ url:"", data:{}, header:{}, method:"GET/POST", success:function (res) { //返回的数据被封装在 res 对象的 data 属性中 console.log(res. ...
分类:
微信 时间:
2020-02-14 18:08:45
阅读次数:
103
获取有效数据 Scikit learn will not accept categorical features by default API里面不知使用默认的特征变量名,因此需要编码 这里我还是有疑问? Need to encode categorical features numerically ...
分类:
其他好文 时间:
2020-02-14 16:17:07
阅读次数:
90
1、使用table-cell父级设置: display: table-cell; text-align: center; vertical-align: middle;子级设置: display: inline-block; vertical-align: middle;2、使用transform父 ...
分类:
其他好文 时间:
2020-02-14 16:03:48
阅读次数:
61
application 应用层 MVC和core的中专 EF 基础设施层 mig 迁移层 webcore 1.多租户=》szjs.Core szjsConsts 里面 public const bool MultiTenancyEnabled = true; 生产迁移文件 add-migration ...
分类:
其他好文 时间:
2020-02-13 23:05:54
阅读次数:
97
加密过程具体TCP实现 步骤 1 : 客户端通过发送Client Hello报文开始SSL通信(这里是在TCP的三次握手已经完成的基础上进行的)。报文中包含客户端支持的SSL的指定版本、加密组件列表(所使用的加密算法及密钥长度等)。 步骤 2 : 服务器可进行SSL通信时,会以Server Hell ...
分类:
Web程序 时间:
2020-02-13 21:13:52
阅读次数:
134
线性回归 主要内容包括: 线性回归的基本要素 线性回归模型从零开始的实现 线性回归模型使用pytorch的简洁实现 线性回归的基本要素 模型 为了简单起见,这里我们假设价格只取决于房屋状况的两个因素,即面积(平方米)和房龄(年)。接下来我们希望探索价格与这两个因素的具体关系。线性回归假设输出与各个输 ...
分类:
其他好文 时间:
2020-02-13 17:32:55
阅读次数:
73