在r中,使用str()函数,可以从如下对象看到结构:

> str(mari)
'data.frame':   25834 obs. of  6 variables:
 $ Xcoor: num  0.0457 0.0469 0.0481 0.0495 0.0519 ...
 $ Ycoor: num  0.107 0.107 0.107 0.108 0.108 ...
 $ Zcoor: num  -0.701 -0.701 -0.701 -0.703 -0.703 ...
 $ RC   : int  120 124 124 125 124 122 120 120 120 120 ...
 $ GC   : int  121 117 117 117 118 119 120 120 120 120 ...
 $ BC   : int  127 135 144 135 126 127 125 125 124 137 ...

有类似的功能吗?

最佳答案

如果您正在寻找一个等价的Rsdata.frame,那么您将需要查看pandas
pandas.DataFrame可能是您要找的。
了解一下DataFrame中的内容,您可以使用.describe.head方法。

import pandas as pd

data = pd.DataFrame({
    'a': [1, 2, 3, 4, 5],
    'b': [1, 2, 3, 4, 5]
})

print(data.head())
print(data.describe())
print(data.columns)

或者,可能有点冗长,只是:
print(data)

关于python - python 。从data.frame获取结构,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36482559/

10-12 17:51