英文: Arranging the dataframe from one row to multiple columns in python 问题 以下是翻译好的部分: 我有一个包含单列但每行有多个值...
如何通过Python发送一个“数组”电子邮件?
英文: How to send an "array" with e-mail via python? 问题 我想使用Gmail发送邮件。但邮件必须特别包含一个数组。我需要帮助。 代...
根据分组函数创建新列
英文: Create new column based on group-by function 问题 你可以尝试以下代码来实现你的需求: import pandas as pd df1 = pd.D...
处理我的数据框,使用条件 – Python Jupyter 笔记本
英文: Processing my dataframes with conditions - python jupyter notebook 问题 这是我的第一篇帖子,我对编程和Python不太了解。...
Combine month name and year in a column pandas python
英文: Combine month name and year in a column pandas python 问题 Year Month Name Avg Month Name-Year 201...
如何在pandas中合并交叉表的类别,其中一些类别是共同的?
英文: How do I merge categories for crosstab in pandas where some categories are common? 问题 以下是要翻译的内容:...
使用Kolmogorov检验检查正态分布
英文: Check Normal distribution with Kolmogorov test 问题 我正在使用Python学习统计学,我有一个任务要检查数据是否符合均值为10、方差为5.5的正...
Pandas 使用 sum() 时会引发错误。
英文: Pandas groupby throws an error when using sum() 问题 我正在尝试计算簇间散布矩阵。为了做到这一点,对于每个簇(在下面的示例中称为“group”)...
在Pandas数据框中移动列值会导致缺失值。
英文: Shifting column values in Pandas Dataframe causes missing values 问题 我想将列值向左移动一个空格。我不想保存列'average...
如何在忽略负数的情况下计算中位数?
英文: How to calculate median while ignoring negative values? 问题 我有以下的数据框: y -1 -1 2 3 2 1 0 我需要应用一个窗口...
212