BIDA PRACTICAL
Practical 3 Download code:- DOWNLOAD Download txt:- Download Download Practical:- Download pdf .Perform the data classification using classification algorithm using R/Python. rainfall Practical 4 Perform the data clustering using clustering algorithm using R/Python newiris Practical - 5 .Perform the Linear regression on the given data warehouse data using R/Python. x Practical 6 Perform the logistic regression on the given data warehouse data using R/Python input Practical 7 Write a Python program to read data from a CSV file, perform simple data analysis, and generate basic insights. (Use Pandas is a Python library) 1. Male to Female ratio on the Titanic: import pandas as pd df= pd.read_csv('train.csv') print(df.columns) print(df['Sex'].value_counts()) print(df['Sex'].value_counts(normalize=True)) 2. Surviving male to female ratio on the Tit...
Comments