限制activerecord-import仅更新

时间:2019-02-25 08:30:39

标签: ruby-on-rails activerecord-import

我正在使用orig_data = np.random.choice(['a', 'b', 'c', 'd', 'e'], 100, p=[0.35, 0.30, 0.20, 0.10, 0.05]) dest_data = np.random.choice(['a', 'b', 'c', 'd', 'e'], 100, p=[0.20, 0.25, 0.25, 0.20, 0.10]) data = [{'orig': orig, 'dest': dest} for orig, dest in zip(orig_data, dest_data)] df = pd.DataFrame(data) df.groupby(['orig', 'dest']).size().unstack().fillna(0).astype(int) 批量更新现有记录上的单个字段。

我正在学习如何使用gem。有没有一种方法可以限制任何事情的产生?

我当前正在使用dest a b c d e orig a 4 9 8 4 3 b 11 8 5 4 6 c 5 2 3 4 5 d 4 3 3 1 3 e 1 0 3 1 0 ,但是不知何故我正在使用空白值创建记录。

0 个答案:

没有答案