for循环内的DataFrames

时间:2018-11-13 16:44:07

标签: python-3.x dictionary for-loop dataframe

我有一个for循环,该循环遍历品牌名称的字典键。每个键都有多个值,这些值存储在列表中,例如[{brand:[(label,1)],[(label2,2)] ...},{brand2:[(label,1)],[ (label2,2)] ...}]

对于每个循环(因此每个品牌名称),我想创建一个df,其中列对应于日期(每周间隔),并且行具有值以及其对应的标签和对应的品牌。

我将日期作为正确的列,但是值和标签仅出现在最后一个日期。最后,我想将所有这些df合并在一起。在这里学习python还是很新的,所以我很困惑我的脚本无法正常工作以及是否可以提高效率。

FWIW,脚本。抱歉,这是一团糟。预先感谢您的帮助。

someThing.forEach{ some -> // 'it' was available here too, but will not be accessible from within the next setOnClickListener...
  someWidget.setOnClickListener{
    // some contains one of the someThings now and 'it' is still your View
  }
}

0 个答案:

没有答案