Skip to content
View NailaRais's full-sized avatar

Block or report NailaRais

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
NailaRais/README.md

πŸš€ Naila Rais - Data Analyst & ML Enthusiast πŸš€

Data Analytics Badge Location Badge Passion Badge

Hi there! I'm Naila Rais, a passionate Data Analyst from Aligarh, India. I specialize in making sense of complex datasets and transforming them into actionable insights for data-driven decision-making. Whether it's predictive modeling, data visualization, or automation, I'm always excited to push the boundaries of data science.


🌟 Summary 🌟

DataCamp Certified Associate Data Analyst with a strong foundation in data analysis, data cleaning, and visualization techniques. I am proficient in tools like Python, SQL, Power BI, Tableau, and Excel. My passion lies in leveraging data to uncover hidden patterns and trends, helping businesses thrive.


πŸŽ“ Education & Certifications πŸŽ“

AAS in Data Analytics Ongoing - Sinclair Community College
DataCamp Certified Associate Data Analyst DataCamp
Google Digital Marketing Certification Google
Postman API Expert Certification Postman

πŸ† Career Highlights & Achievements πŸ†

  • πŸ“Š Developed predictive models using Machine Learning for real estate valuation, marketing, and finance industries.
  • ⚑ Automated data processing and reporting, reducing time spent on manual tasks by 70%.
  • πŸ“ˆ Created interactive dashboards with Power BI and Tableau, enabling real-time monitoring of business KPIs.
  • πŸš€ Contributed to a project at Prodigy InfoTech that boosted customer engagement by 15% through a recommendation system.
  • 🌍 Led a data migration project, ensuring seamless transition from legacy systems to cloud-based infrastructure.

πŸ› οΈ Tools & Technologies πŸ› οΈ

πŸ’» Programming Languages & Tools

☁️ Cloud & DevOps


πŸš€ Projects πŸš€

1. Predictive Analytics Platform

Description: Built a comprehensive platform using Python and Azure ML Studio to forecast sales trends for a major retail chain.
Repository: Predictive-Analytics-Platform

2. Customer Segmentation using ML

Description: Designed a K-Means clustering model to identify customer segments for targeted marketing campaigns.
Repository: Customer-Segmentation-ML

3. AI-Driven Water Management Optimization

Description: Created a solution integrating IoT sensors and machine learning to optimize water usage in agricultural settings.
Repository: Water-Management-Optimization


πŸ“Š Data Insights & Visualizations πŸ“Š

Housing Price Prediction Model

Project: Developed a model to predict housing prices using multiple regression techniques.


import pandas as pd
from sklearn.ensemble import RandomForestRegressor
from sklearn.model_selection import train_test_split
import matplotlib.pyplot as plt
import seaborn as sns

# Load data
data = pd.read_csv('housing_data.csv')
features = data[['Square_Feet', 'Bedrooms', 'Bathrooms']]
target = data['Price']

# Split data
X_train, X_test, y_train, y_test = train_test_split(features, target, test_size=0.2, random_state=42)

# Train model
model = RandomForestRegressor()
model.fit(X_train, y_train)

# Predict and visualize
predictions = model.predict(X_test)
sns.scatterplot(x=y_test, y=predictions)
plt.xlabel('Actual Prices')
plt.ylabel('Predicted Prices')
plt.title('Housing Price Prediction')
plt.show()

πŸ“¬ Get in Touch πŸ“¬

Let's connect! I’m open to collaborations, new opportunities, or just a friendly chat.


✨ Fun Fact ✨

I'm an avid coffee lover who believes in the magic of blending data and storytelling to craft compelling insights!


Thank you for visiting! ✨ Let's make data meaningful and fun together. πŸš€

Popular repositories Loading

  1. NailaRais NailaRais Public

    Config files for my GitHub profile.

  2. climate-tools climate-tools Public

    Python

  3. Patients-Dashboard Patients-Dashboard Public

  4. House-Prices---Advanced-Regression-Techniques House-Prices---Advanced-Regression-Techniques Public

  5. PRODIGY_ML_01 PRODIGY_ML_01 Public

    Implement a linear regression model to predict the prices of houses based on their square footage and the number of bedrooms and bathrooms.

    Jupyter Notebook

  6. Prodigy-ML-02 Prodigy-ML-02 Public

    Create a K-means clustering algorithm to group customers of a retail store based on their purchase history.

    Jupyter Notebook