Pandas is a popular and powerful Python library commonly used for data analysis and manipulation. It provides a number of data structures, including Series, DataFrame, and Panel, for working with tabular and time series data.
Pandas DataFrame is a two-dimensional tabular data structure. In this article, we'll cover various ways to determine the data type of a column in Pandas. There are many situations where we have to find the data type of a column in a Pandas DataFrame. Each column in a Pandas DataFrame can contain different data types.
Before proceeding, let us make a sample dataframe on which we have to get the data type of the column in Pandas
1 2 3 4 5 6 |
|
This python script prints the DataFrame we created.
1 2 3 4 |
|
The methods you can take to complete the task are as follows
Use dtypes attribute
Use select_dtypes()
Use info() method
Use describe() function
Now let us discuss each method and how to use them to get the data type of a column in Pandas.
We can use the dtypes attribute to get the data type of each column in the DataFrame. This property will return a series containing the data type of each column. The following syntax can be used:
Grammar
1 |
|
Return type The data type of each column in the DataFrame.
Import the Pandas library.
Use the pd.DataFrame() function to create a DataFrame and pass the examples as a dictionary.
Use the dtypes attribute to get the data type of each column in the DataFrame.
Print the results to check the data type of each column.
1 2 3 4 5 6 7 8 9 10 11 12 |
|
1 2 3 4 5 6 7 8 9 10 |
|
In this example, we get the data type of a single column of the DataFrame
1 2 3 4 5 6 7 8 9 10 11 12 |
|
1 2 3 4 5 6 7 8 |
|
We can use the select_dtypes() method to filter out the data type columns we need. The select_dtypes() method returns a subset of columns based on the data types provided as input. This method allows us to select columns that belong to a specific data type and then determine the data type.
Import the Pandas library.
Use the pd.DataFrame() function to create a DataFrame and pass the given data as a dictionary.
Print the DataFrame to check the created data.
Use the select_dtypes() method to select all numeric columns from the DataFrame. Use the include parameter to pass the list of data types we want to select as parameters.
Loop over the columns to iterate over each numeric column and print its data type.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
1 2 3 4 5 6 |
|
We can also use the info() method to complete our tasks. The info() method gives us a concise summary of the DataFrame, including the data type of each column. The following syntax can be used:
Grammar
1 |
|
Return valueNone
Import the Pandas library.
Use the pd.DataFrame() function to create a DataFrame and pass the above data as a dictionary.
Print the DataFrame to check the created data.
Use the info() method to get information about the DataFrame.
Print the information obtained from the info() method.
1 2 3 4 5 6 7 8 9 10 11 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
describe() method is used to generate descriptive statistics of DataFrame, including the data type of each column.
Use the import statement to import the Pandas library.
Use the pd.DataFrame() function to create a DataFrame and pass the given data as a dictionary.
Print the DataFrame to check the created data.
Use the describe() method to obtain the descriptive statistics of the DataFrame.
Use the include parameter of the describe() method to 'all' to include all columns in the descriptive statistics.
Use the dtypes attribute to get the data type of each column in the DataFrame.
Print the data type of each column.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
1 2 3 4 5 6 7 8 9 |
|
Knowing how to obtain the data type of each column, we can efficiently complete various data operations and analysis work. Each method has its own advantages and disadvantages depending on the method or function used. You can choose which method you want based on how complex you want the expression to be and your personal coding preferences.
The above is the detailed content of Get data type of column in Pandas - Python. For more information, please follow other related articles on the PHP Chinese website!