我正在尝试通过将内部数据结构加载到熊猫来实现以下目标:
<form class="form-horizontal" th:action="@{/report/create}" method="post">
<div th:each="transactions : ${transaction}">
<input type="hidden" name="income" th:value="${report.income + transactions.income}">
<input type="hidden" name="outcome" th:value="${report.outcome + transaction.outcome}">
</div>
<div class="form-group">
<label class="col-sm-2 control-label"></label>
<div class="col-sm-10">
<button type="submit" class="btn btn-primary">Save</button>
</div>
</div>
</form>
但是,它似乎并没有实现任何一个(就像读取数据以外的df = pd.DataFrame(self.data,
nrows=num_rows+500,
skiprows=skip_rows,
header=header_row,
usecols=limit_cols)
文件时一样)。我可以使用另一种方法来更好地控制正在提取的数据吗?或者,在将数据加载到熊猫之前是否需要重建数据?
我的输入数据如下:
csv
因此,我希望能够说明应该加载(或跳过)的行以及应该跳过哪些列(usecols)。这可能与内部python数据结构有关吗?