python 具有未知数量的不同类型列的散景图

kpbwa7wx  于 2023-08-02  发布在  Python
关注(0)|答案(1)|浏览(84)

如果我在Python中有一个散景图,它有3个字符串列和n个浮点列,是否可以用与字符串列不同格式的n个浮点列来编写散景图?
例如:

df_left = (3 string columns)
df_right = (n float columns)

Columns = [TableColumn(field = x, title = x, format = (some format)) for x in df_left.columns, 
TableColumn(field = y, title = y, format = (some format) for y in df_right.columns]

字符串

0sgqnhkj

0sgqnhkj1#

Columns = [TableColumn(field=x, title=x) for x in table_df_left.columns]

Columns += [TableColumn(field = y, title = y) for y in table_df_right.columns]

字符串
如果有人发现了这个,这就是你要做的!

相关问题