Skip to content
View DanielOX's full-sized avatar
:octocat:
:octocat:
Block or Report

Block or report DanielOX

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

👋 Hi, I’m Danial Shabbir

How to contact me

Discord   Contact   GitHub   Linkedin   Hackerrank   stackoverflow   research gate   Portfolio  


Hire me for the next big thing!


I work wtih

Python SQL Spark Airflow Sklearn

Snowflake Big Query Laravel React Fast API

Contributions


DanielOX's Stack Overflow | Stats DanielOX's GitHub | Stats

Visitor Count

Pinned

  1. Data-Engineering-Workflow-DUCKDB Data-Engineering-Workflow-DUCKDB Public

    A Complete Data Engineering Workflow, Data Modelling and Advanced Analytics using Python, DuckDB

    Jupyter Notebook 2 1

  2. factory-design-pattern factory-design-pattern Public

    An Implementation of Factory Design Pattern in Python. It does not use static calling of subclasses but rather automatically gets the name of the concrete class as keys to invoke the factory creato…

    Python

  3. Natural Language Feature Extraction ... Natural Language Feature Extraction | Bag of Words (with | using) Scikit-Learn Python
    1
    from sklearn.feature_extraction.text import CountVectorizer
    2
    
                  
    3
    # corpus source [ https://en.wikipedia.org/wiki/Baseball ]
    4
    
                  
    5
    corpus = """Baseball is a bat-and-ball game played between two opposing teams who take turns batting and fielding. The game proceeds when a player on the fielding team, called the pitcher, throws a ball which a player on the batting team tries to hit with a bat. The objective of the offensive team (batting team) is to hit the ball into the field of play, allowing its players to run the bases, having them advance counter-clockwise around four bases to score what are called "runs". The objective of the defensive team (fielding team) is to prevent batters from becoming runners, and to prevent runners' advance around the bases.[2] A run is scored when a runner legally advances around the bases in order and touches home plate (the place where the player started as a batter). The team that scores the most runs by the end of the game is the winner."""
  4. Natural Language Feature Extraction ... Natural Language Feature Extraction | Bag of Words (with | using) NLTK Python
    1
    import nltk
    2
    import string
    3
    from collections import defaultdict
    4
    
                  
    5
    # Sample gutenberg corpus loaded from nltk.corpus
  5. markov-chain-problem markov-chain-problem Public

    I am using Markov transition probabilities as a feature matrix for a machine learning algorithm but the problem is for a single document D it will create R rows for each state S R = D x S whereas t…

    Python