我有兩個數據集: 用戶: Bobby 06 Amsterdam
Sunny 07 Rotterdam
Steven 08 Liverpool
Jamie 23 Liverpool
Macca 91 Liverpool
Messi 10 Barcelona
Pique 04 Barcelona
Suarez 09 Barcelona
Neymar 11 brazil
Klopp 1
我有一個對象,其中的字段爲List<AnotherObject>,我想將它映射到第二個對象,其中的字段爲List<String>。我需要映射2個對象。我找不到路。 形勢圖一類 - >類二: public class One {
String field11;
List<AnotherObject> field12;
}
public class AnotherObject
熊貓是否包含一個簡單的方法來將映射器應用於每一行? 例如: import pandas as pd
df = pd.DataFrame(
[[j + (3*i) for j in range(3)] for i in range(4)],
columns=['a','b','c']
)
print(df)
a b c
0 0 1 2
1 3 4 5
2
的列表,請考慮以下情況: public class A {
private String stringA;
public String getStringA() {
return stringA;
}
public void setStringA(String stringA) {
this.stringA = stringA;