gpt4 book ai didi

python - 根据条件随机组合数据以创建新数据

转载 作者:太空宇宙 更新时间:2023-11-03 16:46:46 25 4
gpt4 key购买 nike

我在 python 中遇到了以下我想解决的问题。我想将零件随机分配到具有一定容量的某些容器中。这是一个带有虚拟数据框(带有 pandas)的示例,以展示我想要实现的目标:

dfA =
Car Container Capcity_container Container_type
0 CAR1 E-1 1 E
1 CAR1 A-2 2 A
2 CAR1 B-2 1 B
3 CAR1 A-6 2 A
4 CAR2 B-4 1 B
5 CAR2 A-1 4 A
6 CAR2 B-5 1 B
7 CAR3 C-2 2 C
8 CAR3 B-8 1 B
9 CAR3 B-3 2 B

dfB =
Part Car Container_Type
8 Part9 CAR2 B
0 Part1 CAR1 A
1 Part2 CAR1 A
2 Part3 CAR1 B
3 Part4 CAR1 E
9 Part10 CAR1 A
12 Part13 CAR1 A
4 Part5 CAR2 A
5 Part6 CAR2 A
6 Part7 CAR2 A
13 Part14 CAR2 B
7 Part8 CAR3 B
10 Part11 CAR3 B
11 Part12 CAR3 B

在dfA中,知道哪辆车包含什么时间的指定容量的容器。

在 dfB 中,知道哪个零件需要放在哪辆车和容器类型中。汽车所有零件的总和与 dfA 中容器容量的总和相同。

我的目标:我想将零件随机“分配”到具有正确类型的容器中。容器“满”后,其余部分应分配给具有正确类型的另一个容器。理想情况下,它会返回如下内容:

result =     
Part Car Container_Type Container_assign
0 Part1 CAR1 A A-2
1 Part2 CAR1 A A-2
2 Part3 CAR1 B B-2
3 Part4 CAR1 E E-1
9 Part10 CAR1 A A-1
12 Part13 CAR1 A A-1
4 Part5 CAR2 A A-1
5 Part6 CAR2 A A-1
6 Part7 CAR2 A A-5
8 Part9 CAR2 B B-2
13 Part14 CAR2 B B-5
7 Part8 CAR3 B B-8
10 Part11 CAR3 B B-8
11 Part12 CAR3 B B-3

请注意,它们可以随机分配到容器上,只要满足容量要求并且零件位于正确类型的容器和正确的汽车/ULD中

** 编辑#2 **@Colonel Beauvel:这是您的代码,在深入了解 try 函数后,我做了一些调整,这对我来说是全新的。

for i, r in dfB.iterrows():
mask = (dfA['count']!=0) & (dfA['Container_type']==r['Container_Type']) & (dfA['CAR']==r['CAR'])
df = dfA[mask]
try:
l.append(df.iloc[0]['Container'])
dfA.ix[df.index[0],'count'] = dfA.ix[df.index[0],'count'] - 1
except Exception as e:
l.append('Not Assigned')

dfB['Container_assign']=l

返回:

      Part   CAR Container_Type Container_assign
0 Part9 CAR2 B B-4
1 Part1 CAR1 A A-2
2 Part2 CAR1 A A-2
3 Part3 CAR1 B B-2
4 Part4 CAR1 E E-1
5 Part10 CAR1 A Not Assigned
6 Part13 CAR1 A Not Assigned
7 Part5 CAR2 A A-1
8 Part6 CAR2 A A-1
9 Part7 CAR2 A A-1
10 Part14 CAR2 B B-5
11 Part8 CAR3 B B-8
12 Part11 CAR3 B B-3
13 Part12 CAR3 B B-3

出于示例目的,我将 A-6 的容量更改为零,以便取回 2 个未分配的零件。有效!

  Container   CAR  Capcity_container Container_type  count
0 E-1 CAR1 1 E 0
1 A-2 CAR1 2 A 0
2 B-2 CAR1 1 B 0
3 A-6 CAR1 0 A 0
4 B-4 CAR2 1 B 0
5 A-1 CAR2 4 A 1
6 B-5 CAR2 1 B 0
7 C-2 CAR3 2 C 2
8 B-8 CAR3 1 B 0
9 B-3 CAR3 2 B 0

如何使用 else 或 finally 打印类似“所有部件均已分配”的内容,容量满足部件数量且所有部件均已分配,换句话说,没有错误?当我添加它时,它会返回每个部分的值。编辑#3

我认为这很有效,非常简单......

l = []
dfA['count'] = dfA['Capcity_container']
erroryesno = 'All parts are Assinged'
for i, r in dfB.iterrows():
mask = (dfA['count']!=0) & (dfA['Container_type']==r['Container_Type']) & (dfA['CAR']==r['CAR'])
df = dfA[mask]
try:
l.append(df.iloc[0]['Container'])
dfA.ix[df.index[0],'count'] = dfA.ix[df.index[0],'count'] - 1
except Exception as e:
l.append('Not Assigned')
erroryesno = 'Some are not assinged'
print erroryesno
dfB['Container_assign']=l

最佳答案

一种可能的解决方案是迭代 dfB 行并获取 dfA 中可用的第一个相应容器。该容器容量因此减少一:

l = []
dfA['count'] = dfA['Capcity_container']

for i, r in dfB.iterrows():
mask = (dfA['count']!=0) & (dfA['Container_type']==r['Container_Type']) & (dfA['car']==r['car'])
df = dfA[mask]
try:
l.append(df.iloc[0]['Container'])
except Exception as e:
print 'Not anymore container for this type'
raise e
dfA.ix[df.index[0],'count'] = dfA.ix[df.index[0],'count'] - 1

dfB['container_assign']=l

关于python - 根据条件随机组合数据以创建新数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36234921/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com