上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: https://www.zhuxianfei.com/python/47774.html 阅读全文
posted @ 2022-08-25 16:36 Marklong 阅读(5) 评论(0) 推荐(0) 编辑
摘要: print(np.where(pd.isnull(chunk['encoded_fea']))) 阅读全文
posted @ 2022-08-25 15:40 Marklong 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u013185349/article/details/108761332 阅读全文
posted @ 2022-08-16 17:04 Marklong 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_39331401/article/details/105574903 阅读全文
posted @ 2022-08-16 17:03 Marklong 阅读(10) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/daodaotest/p/13277208.html 阅读全文
posted @ 2022-08-16 17:02 Marklong 阅读(14) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Parzival_/article/details/107283250 阅读全文
posted @ 2022-08-16 17:02 Marklong 阅读(24) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/guang2508/p/12923127.html 阅读全文
posted @ 2022-08-11 17:59 Marklong 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/linuxprobe/p/16329015.html 阅读全文
posted @ 2022-08-04 14:24 Marklong 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 参考链接:https://blog.csdn.net/ztf312/article/details/88322222 示例:文件中字符串2022/2/7转换成20220207,解决方案如下: import pandas as pd #解决无法解决中文字符的问题 data = pd.read_csv( 阅读全文
posted @ 2022-08-04 10:53 Marklong 阅读(573) 评论(0) 推荐(0) 编辑
摘要: 输出逗号分割的第一列的值 echo "6 1:2 3:4,5" | awk -F ',' '{print $1}' 把第一列label自减1 echo "1 1:2 3:4,5" | awk -F ' ' '{$1--; print $0}' 把label转成01分布的值(以label的值为1作为分 阅读全文
posted @ 2022-08-03 18:04 Marklong 阅读(34) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页