Skip to content
View FarahIbrar's full-sized avatar
🗣️
Let's connect on LinkedIn
🗣️
Let's connect on LinkedIn
Block or Report

Block or report FarahIbrar

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
FarahIbrar/README.md

Farah Ibrar's Github Banner

I'm Farah Ibrar, originally from the United Kingdom. I hold a BSc in Biomedical Sciences (Hons) and recently completed my MSc in Biomedical Sciences (Immunology) from the University of Westminster, London.


🤝🏻 Connect with Me: LinkedIn Email Resume


Interests Professional Interests

My academic path sparked a deep interest in data analytics, visualization, and technology, particularly through Bioinformatics and R. My Master's final project in Data Science focused on innovating database storage solutions for OMICS data solidified my passion. Since then, I have been actively enhancing my skills in data&tech. Currently, I'm advancing my skills in programming and data analysis through a Python course with CFG powered by Activision.


Hammer and Wrench Languages and Tools

icon
Python
icon
RStudio
icon
MySQL
PostgreSQL
PostgreSQL
PHP
SPSS
HTML5
HTML5
CSS
CSS
icon
JavaScript
icon
Tableau
icon
Anaconda
icon
VSCode
icon
Jupyter
icon
Github
Git
Git
Nodejs
Nodejs
NumPy
NumPy
Pandas
Pandas
Scikit-Learn
Sklearn
Pytorch
Pytorch
Matplotlib
Matplotlib
Seaborn
Seaborn
TensorFlow
TensorFlow
Docker
Docker
SpaCy
SpaCy
PyCharm
PyCharm
Canva
Canva
Figma
Figma

Rocket GitHub Stats

GitHub Streak



Contribution Graph

Code My Outlier Detection Script

This Python script automates outlier detection using the Interquartile Range (IQR) method, a robust statistical technique. By calculating the IQR and defining upper and lower bounds, it identifies significant anomalies in datasets. This streamlines data cleaning, ensuring more accurate and reliable analysis.

import numpy as np

def detect_outliers(data):
    q1, q3 = np.percentile(data, [25, 75])
    iqr = q3 - q1
    lower_bound = q1 - 1.5 * iqr
    upper_bound = q3 + 1.5 * iqr

    outliers = [x for x in data if x < lower_bound or x > upper_bound]

    return outliers

if __name__ == "__main__":
    # Example usage:
    data = [12, 18, 25, 7, 10, 15, 8, 19, 3, 100, 16]  # Example dataset with an outlier (100)
    print("Detecting Outliers...")
    outliers = detect_outliers(data)
    if outliers:
        print("Outliers detected:", outliers)
    else:
        print("No outliers detected.")

✨ Personal Interests

I advocate for a healthy but busy lifestyle and thrive on continuous learning and new challenges. Motivational quotes keep me focused and driven, fueling my passion for growth and inspiration.

Readme Quotes

Cricket
Cricket
Badminton
Badminton
Cooking
Cooking
Reading
Reading
Travel
Travelling
Busy
Productive
Training
Training
Music
Music
Dance
Dancing
AI
AI

Lock Fun Facts About Me

Click to find out more!
  • Multilingual: Fluent in 4 languages—English, Urdu, Punjabi, and Hindi.
  • Achievements: Best Progress Award (2019 & 2020), Rochdale School's Badminton Championship Winner (2019), Sports (Cricket and Badminton) Achievements - Secondary School, Best Handwriting Award, State Level Urdu Competition.
  • Creative Skills: I have a passion for calligraphy, excel in henna artistry, and can choreograph impressive dance routines.

Snake animation


Popular repositories Loading

  1. FarahIbrar FarahIbrar Public

    Feel free to explore my GitHub profile and share any suggestions you may have.

    3

  2. Programming-in-Python Programming-in-Python Public

    Explore a comprehensive collection of Python programming for diverse data analysis and data science projects. This repository covers data exploration, visualization, statistical analysis, machine l…

    Jupyter Notebook 2

  3. 5-Day-Coding-Challenge 5-Day-Coding-Challenge Public

    I am documenting my journey through the Code Institute's 5-Day Challenge! Tasked with creating an engaging webpage teaching "How to make tea?" using HTML, CSS, and JavaScript, I embarked on this co…

    HTML 1

  4. CFG-SQL-Deloitte CFG-SQL-Deloitte Public

    This repository contains a comprehensive SQL project developed as part of CFG's SQL course powered by Deloitte. It spans foundational to advanced SQL techniques, including database creation, data m…

    1

  5. aws-random-quote-generator aws-random-quote-generator Public

    The AWS Random Quote Generator is a serverless web application that fetches and displays random programming quotes using AWS Lambda, API Gateway, and a responsive HTML/CSS/JavaScript frontend.

    Python

  6. CFG-Python-Activision CFG-Python-Activision Public

    Join me on this journey to master Python from the basics to building web applications! I'll be sharing course content, projects, and practical tasks, with a focus on developing data analysis skills…