8000 FarahIbrar (Farah Ibrar) · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
View FarahIbrar's full-sized avatar
🫶
Thank you everyone for your support! Don't follow to Unfollow!!!
🫶
Thank you everyone for your support! Don't follow to Unfollow!!!

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 from the United Kingdom, with a BSc in Biomedical Sciences (Hons) and an MSc in Biomedical Sciences (Immunology) from the University of Westminster, London. Transitioning into data analytics and data science, I combine analytical skills with a passion for data-driven problem-solving.


🤝🏻 Connect with Me:

githubpages LinkedIn Gmail Tableau x


Interests Professional Interests

My academic journey sparked a strong interest in data analytics, visualization, and technology, particularly through Bioinformatics and R. During my Master's, my Data Science project on relational database storage for OMICS data solidified this passion. Since then, I have been actively expanding my expertise in data and technology, advancing my programming and data analysis skills through self-learning and online courses.


Hammer and Wrench Languages and Tools


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.

Click to view my Outlier Detection Code!
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.")

Snake animation

Popular repositories Loading

  1. FarahIbrar FarahIbrar Public

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

    9 1

  2. KPMG-Job-Simulation KPMG-Job-Simulation Public

    This repository showcases my work from the KPMG Technology Job Simulation by Forage, focusing on Data Analytics and Cloud Engineering. Explore how I tackled real-world business challenges through s…

    Python 5 1

  3. 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 4

  4. 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 3

  5. CFG-SQL-Deloitte CFG-SQL-Deloitte 4023 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…

    2

  6. 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 2

0