摘要:
如何快速地生成一个Python项目的requirements.txt pipreqs https://github.com/bndr/pipreqs pip install pipreqs Usage: pipreqs [options] [<path>] 阅读全文
摘要:
两个时间序列(时序信号)的水平位移(重叠程度),对两者互信息值的影响 1、x和y完全重叠; MIStimulation(xspike=100, yspike=100) 2、x和y相差1 MIStimulation(xspike=100, yspike=101) 3、x和y相差10 MIStimula 阅读全文
摘要:
绘制一条透明背景的trace,并保存(使用Matlab); %% 绘制一条透明背景的trace; plot(dff(14,:)); % 设置figure的位置 set(gcf,'Position',[100 100 1500 100]); % 关闭XY的横纵坐标; set(gca,'xtick',[ 阅读全文
摘要:
Scanpy Umap 3D https://scanpy.readthedocs.io/en/stable/generated/scanpy.pl.umap.html projection : Literal[‘2d’, ‘3d’] (default: '2d') Projection of pl 阅读全文
摘要:
Scanpy plot umap的color编码, Scanpy 的color map 如何设置?关键词palette(调色板) https://scanpy.readthedocs.io/en/stable/generated/scanpy.pl.umap.html?highlight=pl.um 阅读全文
摘要:
Python中常见的调色板: 颜色 color 这个人对颜色的总结,非常到位哈! https://blog.csdn.net/weixin_42943114/article/details/81811556 阅读全文
摘要:
Matlab绘制垂直的直线图 p1 = [locsList(i),locsList(i)]; %x轴; p2 = [0, pksList(i)]; %y轴; line(p1, p2,'Color','red','LineWidth',1.2);hold on; 阅读全文
摘要:
Matlab save colormap Matlab save colormap 1、保存成eps格式; 2、使用AI软件打开; 3、即可得到期望的colormap; 阅读全文
摘要:
Matlab or Python trace 峰值探测 https://blog.csdn.net/xsz591541060/article/details/111290847 matlab中直接使用findpeaks即可: 波峰,峰值,峰宽; 峰凸、峰高、半凸宽、半峰宽; 一定要好好看文档: fi 阅读全文
摘要:
Matlab Line 透明度 坑 导出eps文件;然后在AI里调整透明度; 阅读全文