plt.hist(x, bins=None, range=None, density=None, weights=None, cumulative=False, bottom=None, histtype='bar', align='mid', orientation='vertical', rwi ...
分类:
其他好文 时间:
2021-06-02 10:32:00
阅读次数:
0
Introdution STM32Fxxx 系列的MCU, 似乎有分類成 low-, medium-, high-, XL-density 4種不同Flash大小的產品。 個人是常常忘記所以在此筆記。 Flash : 通常放置程式碼, const常數變數, 掉電資料不消失。 存取速度較慢 RAM : ...
分类:
数据库 时间:
2021-02-18 13:22:05
阅读次数:
0
1.字间距 letter-spacing: 3px; 2.首行空两个字符 text-indent: 2em;//必须为em为单位1em为一个字符 3.文字两端对齐。 text-align: justify; 4.文字单行超出部分为省略号 overflow: hidden; white-space: ...
分类:
Web程序 时间:
2020-09-09 18:54:31
阅读次数:
62
--第一步:查看是否需要维护,查看扫描密度/Scan Density是否为100%declare @table_id intset @table_id=object_id('ICMO')dbcc showcontig(@table_id) --第二步:重构表索引dbcc dbreindex('t_S ...
分类:
其他好文 时间:
2020-07-29 10:37:38
阅读次数:
81
ppi:pixels perinch,每英寸像素数,但是将PPI称为DPI已变得司空见惯 dpi:dots per inch ,每英寸点数,单位 DPI ,打印分辨率 因为是英寸,希望更换成公制单位,例如:dpcm dp:device-independent pixel(density-indepe ...
分类:
其他好文 时间:
2020-06-17 12:28:17
阅读次数:
72
先放geom_density()图层的仿照网址:https://www.r-graph-gallery.com/density_mirror_ggplot2.html 生成数据 data <- data.frame( var1 = rnorm(1000), var2 = rnorm(1000, me ...
分类:
其他好文 时间:
2020-05-16 20:48:45
阅读次数:
78
peaks 介绍 peaks() 函数本质上是一个二元高斯分布的PDF; 从图像上看,它有3个极小点,3个极大点; .jpg) 应用举例 代码 最终的效果图: ...
分类:
其他好文 时间:
2020-04-08 21:01:28
阅读次数:
119
文献名:Comparing Data-Independent Acquisition and Parallel Reaction Monitoring in Their Abilities To Differentiate High-Density Lipoprotein Subclasses(比较 ...
分类:
其他好文 时间:
2020-02-10 22:55:14
阅读次数:
150
plt.hist() 字体测试 plt.hist(x, bins=None, range=None, density=None, weights=None, cumulative=False, bottom=None, histtype='bar', align='mid', orientation ...
分类:
其他好文 时间:
2020-02-02 11:49:47
阅读次数:
81
题意: 给一个n个点的图,每个点有权值,每条边有权值。q次询问,每次询问从a出发不经过边权大于x的边能够到达的所有点中,点权第k大的值。 n<=100000,q<=500000 题解: 点权第k大的值,容易想到可持久化线段树,问题就在于如何把要查询的点转化为一段连续的区间。 考虑建立Kruskal重 ...
分类:
其他好文 时间:
2020-01-29 01:21:03
阅读次数:
89