Присвойте несколько строк одному индексу в Пандах

Это зависит, есть некоторые вещи, которые вы можете получить только в библиотеке поддержки, например ViewPager. но если вам минимальный API равен 15, вам действительно не нужно использовать библиотеку поддержки, поскольку библиотека поддержки предназначена для поддержки более старых API (& lt; 11), имеющих те же функциональные возможности, что и новый API

1
задан anyplane 3 March 2019 в 15:59
поделиться

3 ответа

Возможно, попробуйте сделать это, создав список различных индексов, например:

times = [int(x[1][:2]) for x in your_array]
previous = 0
index=[1]
next_agent= 2
for time in times:
    if time >= previous:
        index.append(‘´)
    else:
        index.append(next_agent)
        next_agent+=1
    previous = time

, а затем установите df:

df= DataFrame(your_array, index=index, columns=column)
0
ответ дан Docaro 3 March 2019 в 15:59
поделиться

Рассмотрим следующие данные (некоторые добавлены для проверки):

print(df)
     Activity Name Activity Start Activity End
0            Phone       04:00:00     08:00:00
1            Lunch       08:00:00     08:30:00
2           Coffee       08:30:00     08:45:00
3            Phone       08:45:00     10:30:00
4   WrittenSupport       10:30:00     12:30:00
5            Phone       04:00:00     08:00:00
6            Lunch       08:00:00     08:30:00
7           Coffee       08:30:00     08:45:00
8            Phone       08:45:00     09:00:00
9            Phone       06:00:00     09:00:00
10  Someother Name       10:30:00     12:30:00
11           Phone       04:00:00     08:00:00
12           Lunch       08:00:00     08:30:00
13          Coffee       08:30:00     08:45:00
14           Phone       08:45:00     09:00:00
15           Phone       06:00:00     09:00:00

Использование ниже:

df['index_col']=df[~df.duplicated('Activity Name',keep=False)].expanding().count().iloc[:,1]
df_new=df.set_index(df.index_col.ffill().fillna(0)).rename_axis(None).drop('index_col',1)
print(df_new)

      Activity Name Activity Start Activity End
0.0           Phone       04:00:00     08:00:00
0.0           Lunch       08:00:00     08:30:00
0.0          Coffee       08:30:00     08:45:00
0.0           Phone       08:45:00     10:30:00
1.0  WrittenSupport       10:30:00     12:30:00
1.0           Phone       04:00:00     08:00:00
1.0           Lunch       08:00:00     08:30:00
1.0          Coffee       08:30:00     08:45:00
1.0           Phone       08:45:00     09:00:00
1.0           Phone       06:00:00     09:00:00
2.0  Someother Name       10:30:00     12:30:00
2.0           Phone       04:00:00     08:00:00
2.0           Lunch       08:00:00     08:30:00
2.0          Coffee       08:30:00     08:45:00
2.0           Phone       08:45:00     09:00:00
2.0           Phone       06:00:00     09:00:00
0
ответ дан anky_91 3 March 2019 в 15:59
поделиться

Если у вас есть отдельные строки для ваших агентов и деятельности вы можете создать мульти-индекс, как это:

import pandas as pd

# This is the dataframe data with activities you got from a single agent
agent_1 = [['Phone', 'Phone', 'Coffee', 'Lunch', 'Phone', 'Phone', 'Lunch', 'Lunch'],
           ['04:00', '08:30', '10:30', '04:00', '10:30', '04:00', '08:30', '10:30']]

# This is the dataframe data from a second agent
agent_2 = [['Phone', 'Pooping', 'Coffee', 'Lunch', 'Phone', 'Meeting', 'Lunch', 'Lunch'],
           ['08:45', '08:50', '10:30', '04:00', '10:30', '04:00', '08:30', '10:30']]

# We create the dataframe for agent 1
df1 = pd.DataFrame(agent_1).T
df1.columns = ['activity', 'time']


# We create the dataframe for agent 2
df2 = pd.DataFrame(agent_2).T
df2.columns = ['activity', 'time']

# Now we have to dataframes we can't really put together
print(df1)
print("----")
print(df2)
print("----")

# So we should give each dataframe a column with its agent.
df1['agent'] = "Agent_1"
df2['agent'] = "Agent_2"

# Now each dataframe has data on its agent
print(df1)
print("----")
print(df2)
print("----")

# Let's combine them
overview = pd.concat([df1, df2])
print(overview)
print("----")

# To make it even better, we could make a multi-index so we can index both agents AND activities
overview.set_index(['agent', 'activity'], inplace=True)
print(overview)

Вывод:

  activity   time
0    Phone  04:00
1    Phone  08:30
2   Coffee  10:30
3    Lunch  04:00
4    Phone  10:30
5    Phone  04:00
6    Lunch  08:30
7    Lunch  10:30
----
  activity   time
0    Phone  08:45
1  Pooping  08:50
2   Coffee  10:30
3    Lunch  04:00
4    Phone  10:30
5  Meeting  04:00
6    Lunch  08:30
7    Lunch  10:30
----
  activity   time    agent
0    Phone  04:00  Agent_1
1    Phone  08:30  Agent_1
2   Coffee  10:30  Agent_1
3    Lunch  04:00  Agent_1
4    Phone  10:30  Agent_1
5    Phone  04:00  Agent_1
6    Lunch  08:30  Agent_1
7    Lunch  10:30  Agent_1
----
  activity   time    agent
0    Phone  08:45  Agent_2
1  Pooping  08:50  Agent_2
2   Coffee  10:30  Agent_2
3    Lunch  04:00  Agent_2
4    Phone  10:30  Agent_2
5  Meeting  04:00  Agent_2
6    Lunch  08:30  Agent_2
7    Lunch  10:30  Agent_2
----
  activity   time    agent
0    Phone  04:00  Agent_1
1    Phone  08:30  Agent_1
2   Coffee  10:30  Agent_1
3    Lunch  04:00  Agent_1
4    Phone  10:30  Agent_1
5    Phone  04:00  Agent_1
6    Lunch  08:30  Agent_1
7    Lunch  10:30  Agent_1
0    Phone  08:45  Agent_2
1  Pooping  08:50  Agent_2
2   Coffee  10:30  Agent_2
3    Lunch  04:00  Agent_2
4    Phone  10:30  Agent_2
5  Meeting  04:00  Agent_2
6    Lunch  08:30  Agent_2
7    Lunch  10:30  Agent_2
----
                   time
agent   activity       
Agent_1 Phone     04:00
        Phone     08:30
        Coffee    10:30
        Lunch     04:00
        Phone     10:30
        Phone     04:00
        Lunch     08:30
        Lunch     10:30
Agent_2 Phone     08:45
        Pooping   08:50
        Coffee    10:30
        Lunch     04:00
        Phone     10:30
        Meeting   04:00
        Lunch     08:30
        Lunch     10:30
0
ответ дан NoSplitSherlock 3 March 2019 в 15:59
поделиться
Другие вопросы по тегам:

Похожие вопросы: