Hi,
Thanks for registering with ProjectPro Recipes - get just-in-time learning and release your projects faster with "ready-to-use" Data-Science code snippets.Â
We recently launched an end-to-end, solved industry project with video explanation, solution code and dataset. The project is Credit card fraud detection as a classification problem. Its available here.Â
Also find below a recipe we launched recently -Â
How to get descriptive statistics of a Pandas DataFrame?
## How to get descriptive statistics of a Pandas DataFrame
def Kickstarter_Example_85():
print()
print(format('How to get descriptive statistics of a Pandas DataFrame','*^82'))
import warnings
warnings.filterwarnings("ignore")
# load libraries
import pandas as pd
#Create dataframe
data = {'name': ['Jason', 'Molly', 'Tina', 'Jake', 'Amy'],
'age': [42, 52, 36, 24, 73],
.
.
View the complete recipe
Get access to solved, end-to-end projects using such recipes - price increases on March 26
|