Open In App

Python | Pandas Series.str.isdecimal()

Improve
Improve
Like Article
Like
Save
Share
Report

Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric Python packages. Pandas is one of those packages and makes importing and analyzing data much easier.

Pandas isdecimal() is used to check whether all characters in a string are decimal. This method works in a similar way to str.isdigit() method, but there is a difference that the latter is more expansive with respect to non ASCII digits. This will be cleared with the help of an example.

Syntax: Series.str.isdecimal()
Return type: Boolean series

Example #1:
In this example, a new data frame is created with just one column and some values are passed to it. Then str.isdecimal() method is called on that column and output is returned to a new column Bool.




# importing pandas module 
import pandas as pd
  
# creating data frame
data = pd.DataFrame(["hey", "gfg", 3, "4", 5, "5.5"])
  
# calling method and returning series
data["Bool"]= data[0].str.isdecimal()
  
# display
data


Output:
As shown in the output image, the decimal returns True for decimal values in string form. If the element is in int, float or any other data type other than string, NaN is returned ( No matter if it’s a decimal number )

 
Example #2:
In this example, numbers with power are also added to that column. Both str isdigit() and str.isdecimal() are called and output is stored in different columns to compare the difference between both.




# importing pandas module 
import pandas as pd
  
# creating data frame
data = pd.DataFrame(["hey", "gfg", 3, "4²", 5, "5.5", "129²"])
  
# calling method and returning series
data["Bool"]= data[0].str.isdecimal()
  
# calling method and returning series
data["Bool2"]= data[0].str.isdigit()
  
# display
data


Output:
As shown in the Output image, the isdigit () returns True for numbers with power but isdecimal () returns False for those values.



Last Updated : 28 Sep, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads