-1

私は基本的な Python プログラマーです。私はpython3を使用していて、要素を辞書のリストに追加しようとしています。リストの各辞書に異なる要素を追加したい.append()、add()、およびinsertを使用しようとしましたが、うまくいきませんでした。ここで私のコードと予想される出力を以下に示します。

code :-
dataframe = spark.read.option("header", True).option("inferschema", True).csv("order_details.csv") 
data = ks.DataFrame(dataframe) #converted to koalas
stats = data.describe()
stats_result = json.loads(stats.to_json())
stats_result["statsresult"] = "count" #trying to add new field 

error :-
TypeError: list indices must be integers or slices, not str

output :- 
{
[
    {
        "discount": 10.0,
        "orderID": 10.0,
        "productID": 10.0,
        "quantity": 10.0,
        "unitPrice": 10.0
    },
    {
        "discount": 0.0,
        "orderID": 10249.4,
        "productID": 42.6,
        "quantity": 15.7,
        "unitPrice": 22.0
    },
    {
        "discount": 0.0,
        "orderID": 1.1737877908,
        "productID": 20.9719389238,
        "quantity": 12.000462954,
        "unitPrice": 12.7714960404
    }
    ]
    }


Expected output:-
             {
             [
             {
         "discount": 1000,
         "orderID": 1000,
         "productID": 1000,
         "quantity": 1000,
         "statsresult": "count",
         "unitPrice": 1000
          },
          { 
         "discount": "0",
         "orderID": "10625",
         "productID": "9",
         "quantity": "90",
         "statsresult": "max",
         "unitPrice": "99"
          },
          {
         "discount": "0",
         "orderID": "10248",
         "productID": "1",
         "quantity": "1",
         "statsresult": "min",
         "unitPrice": "10"
          }
          ]
          }

どんな助けでも大歓迎です!ありがとうございました :)

4

1 に答える 1

1
for element in stats_result:
  # calculate value to insert
  element["key"] = some_value
于 2021-06-11T06:29:19.947 に答える