答案 0 :(得分:0)
您可以使用tidyr包中的collect函数:
library(tidyr)
client1 <- c(23, 12, NA)
client2 <- c(45, 34, 56)
df1 <- data.frame(client1, client2)
df2 <- gather(df1, key = "Clients", value = "Money", na.rm = TRUE)
答案 1 :(得分:0)
这也可以通过public class Person {
@NotNull
private String firstName;
@NotNull
private String lastName;
private String city;
//Getter
//Setter
}
软件包来完成。
reshape