上一页 1 2 3 4 5 6 ··· 8 下一页

2024年4月18日

摘要: for code in codes: # Get the data of the stock that corresponds to the current ticker symbol. current_stock = origin_data[code] mask = (current_stock[ 阅读全文
posted @ 2024-04-18 11:01 ac23 阅读(2) 评论(0) 推荐(0) 编辑

2024年3月27日

摘要: 原始报错 ERROR: database "research db" is being accessed by other usersDetail: There are 20 other sessions using the database. 解决办法 第一步 https://stackoverf 阅读全文
posted @ 2024-03-27 10:20 ac23 阅读(5) 评论(0) 推荐(0) 编辑

2024年3月12日

摘要: 背景 只在CFLAGS和CXXFLAGS加-fsanitize=address是不够的,会编译失败,报出一堆undefined reference to __asan_report_XXX这样的报错,例如 undefined reference to __asan_report_load1 各种各种 阅读全文
posted @ 2024-03-12 15:50 ac23 阅读(194) 评论(0) 推荐(0) 编辑

2024年3月11日

摘要: 1.开启了x11功能的mobaxterm(mobaXterm默认开启了,其他的终端可能还要设置开启)上安装一些必要依赖 sudo apt install libxext6 libxrender1 libxtst6 libxi6 libfreetype6 -y sudo apt install fon 阅读全文
posted @ 2024-03-11 10:15 ac23 阅读(95) 评论(0) 推荐(0) 编辑

2024年3月6日

摘要: 解决办法 要定时执行的shell脚本开头引入你自己有访问权限的环境变量文件: #!/bin/sh . /home/hsy/.profile(这是Ubuntu的,如果是CentOS就改成bash_profile) . /home/hsy/.bashrc # 以下写你脚本的内容 crontab -e要这 阅读全文
posted @ 2024-03-06 14:30 ac23 阅读(9) 评论(0) 推荐(0) 编辑

2024年2月29日

摘要: 原文: http://anders.wang/pandaszhong-set_index-he-reset_index-yi-ji-reindex-qu-bie/ 写得比较好,感谢作者 阅读全文
posted @ 2024-02-29 15:31 ac23 阅读(1) 评论(0) 推荐(0) 编辑
 
摘要: 原生Pandas中的用法介绍 https://www.cnblogs.com/keye/p/11229863.html 当结合Polars时的使用 https://mp.weixin.qq.com/s/3-TSOGbrxTpCyaZx1EI1bA 阅读全文
posted @ 2024-02-29 13:48 ac23 阅读(1) 评论(0) 推荐(0) 编辑

2024年2月28日

摘要: 参考文章 1.https://www.cnblogs.com/zhoujinyi/p/10939715.html 2.https://www.cnblogs.com/lijiaman/p/16558877.html 具体实操 创建一个可以登录的用户(user默认可登录,role默认不可登录) CRE 阅读全文
posted @ 2024-02-28 15:28 ac23 阅读(101) 评论(0) 推荐(0) 编辑

2024年2月2日

摘要: 50个股票 12个进程 1200秒 数据库表大小:669MB 一个超快的将Pandas的DataFrame数据导入Postgresql数据库中的方法: https://stackoverflow.com/a/47984180/16205177 使用该方法之后,50个股票,只开了4个进程,仅仅耗时73 阅读全文
posted @ 2024-02-02 17:20 ac23 阅读(7) 评论(0) 推荐(0) 编辑

2024年2月1日

摘要: import pickle import gzip import pandas as pd def decompress_object(filename): with gzip.open(filename, 'rb') as f: obj = pickle.load(f) return obj 阅读全文
posted @ 2024-02-01 10:13 ac23 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页