“Obtenha colunas por tipo Pandas” Respostas de código

Como verificar o DataType da coluna no DataFrame Python

df['DataFrame Column'].dtypes
Ugliest Unicorn

Obtenha colunas por tipo Pandas

In [2]: df = pd.DataFrame({'NAME': list('abcdef'),
    'On_Time': [True, False] * 3,
    'On_Budget': [False, True] * 3})

In [3]: df.select_dtypes(include=['bool'])
Out[3]:
  On_Budget On_Time
0     False    True
1      True   False
2     False    True
3      True   False
4     False    True
5      True   False

In [4]: mylist = list(df.select_dtypes(include=['bool']).columns)

In [5]: mylist
Out[5]: ['On_Budget', 'On_Time']
Misty Mandrill

Respostas semelhantes a “Obtenha colunas por tipo Pandas”

Perguntas semelhantes a “Obtenha colunas por tipo Pandas”

Mais respostas relacionadas para “Obtenha colunas por tipo Pandas” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código