Skip to content
View alimasri's full-sized avatar
Block or Report

Block or report alimasri

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

👋 Hi, I’m @alimasri. I am a Lead Data Engineer at Ford Motor Company. In my day-to-day job, I work with data engineers, data scientists and business customers to build big data products. These products help the company extract valuable insights, make faster decisions, and save a lot of money. I have 7+ years of IT experience, in the domains of Data Science and Data Engineering. I have a Ph.D. in Computer Sciences from the University of Paris Saclay in France. My thesis was about building an integration solution that connects different transportation systems in the area of Paris. During my research, I published many articles in national and international conferences. I really like teaching and writing about Data Science and Data Engineering. I have been leading many enterprise data science training programs that enable people with different backgrounds to understand and use current data science tools.

📫 Know more about me https://alimasri.info

Pinned

  1. movies_organizer movies_organizer Public

    An application that helps you organize your movie collection.

    Python 11 1

  2. feedme feedme Public

    Automated email campaign using XML Feed

    Python 3

  3. movies_navigator movies_navigator Public

    A tool that makes use of the structure build by the movies_organizer project in order to provide a fast easy way to manage and navigate your movies.

    Python

  4. spark-mllib-pca.py spark-mllib-pca.py
    1
    ## Import findspark and Initialize a Spark Session
    2
    
    
    3
    import findspark
    4
    findspark.init()
    5
    from pyspark.sql import SparkSession
  5. spark-mllib-regression.py spark-mllib-regression.py
    1
    # make pyspark importable as a regular library.
    2
    import findspark
    3
    findspark.init('/opt/spark')
    4
    # create a SparkSession
    5
    from pyspark.sql import SparkSession