Git Product home page Git Product logo

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


Farah Ibrar's Projects

5-day-coding-challenge icon 5-day-coding-challenge

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 coding adventure. In addition to tackling the challenge prompts, I seized the opportunity to develop my own unique webpage as part of the challenge.

aws-random-quote-generator icon aws-random-quote-generator

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.

cfg-python-activision icon cfg-python-activision

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 along the way. Follow along for continuous updates and insights, leading up to our final project!

cfg-sql-deloitte icon cfg-sql-deloitte

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 manipulation, complex queries, and data management. It also includes projects on cricket data analysis and financial analysis using SQL and Tableau.

farahibrar icon farahibrar

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

programming-in-python icon programming-in-python

Explore a comprehensive collection of Python programming for diverse data analysis and data science projects. This repository covers data exploration, visualization, statistical analysis, machine learning, NLP, and model deployment. Perfect for enthusiasts looking to delve into practical examples and advanced techniques.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.