Skip to content
View KonovalovaDS's full-sized avatar
💭
Learning every day
💭
Learning every day

Block or report KonovalovaDS

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

Good Day to Everyone

My name is Natalia - passionate Data Scientist and Photography Enthusiast

As a Data Science Specialist, I am passionate about working with (big) data and applying machine learning techniques to solve real-world problems. Currently I am in the process to complete a Data Science program. I am confidently using the following libraries: Numpy, Pandas, Matplotlib, SciPy & Scikit-learn, Seaborn, Plotly and others. I know data structures, principles of OOP and modular programming; understand and use ML algorithms such as Linear & Logistics Regression, Decision Tree algorithm, Random Forest Classifier, Gradient Boosting, Clustering (k-means, DBSCAN).

The projects I’ve been working on can be reviewed below.

I am currently open for new opportunities in the data science field, where I can leverage my analytical skills, communication qualities, and domain expertise to create value and impact for the organization. I am eager to learn new technologies, collaborate with diverse teams, and contribute to the ML-developing area.

So far have learned and made use of:

  • Python, SQL;
  • EDA, Feature Engineering and Data wrangling;
  • Machine Learning;
  • Mathematical statistics;
  • Linear Algebra in the context of Linear Methods;
  • Mathematical Analysis in the context of an optimization problem;
  • ... to be continued - learning every day...

If interested, please have look at

Portfolio Description
PROJECTS Projects I was exploring out of curiousity, gaining experience and enjoying learning new tools & techniques.
GAMES Click to have some fun with simple and primitive codes.
TRAINING PROJECTS Few case-studies performed following the ML-modeling learning path...
GISTS I really like this tool to store and share some useful codes and functions. Have a look, maybe you will like it too.

Feel free to contact

Pinned Loading

  1. TRAINING_PROJECTS TRAINING_PROJECTS Public

    Data Science & Machine Learning Course

    HTML 1

  2. PROJECTS PROJECTS Public

    A sight on my work

    HTML 1

  3. Outliers functions Outliers functions
    1
    # Outliers: method Tukey
    2
    
                  
    3
    def outliers_iqr(data, feature, left = 2, right = 2, log_scale = False):
    4
        if log_scale:
    5
            x = np.log(data[feature]+1)
  4. Linear Regression_Metrics Linear Regression_Metrics
    1
    from sklearn import linear_model 
    2
    from sklearn import metrics 
    3
    
                  
    4
    def print_metrics(y_train, y_train_predict, y_test, y_test_predict):
    5
      
  5. Statistical Tests Statistical Tests
    1
    # Confidence Interval Function
    2
    
                  
    3
    def proportions_conf_interval(n, x_p, gamma):
    4
        alpha = 1 - gamma
    5
        z_crit = -norm.ppf(alpha / 2)
  6. Encoding categorical features Encoding categorical features
    1
    import category_encoders as ce
    2
    
                  
    3
    #Ordinal Encoding
    4
    ord_enc = ce.OrdinalEncoder()
    5
    df[['XXX', 'YYY', 'ZZZ']] = ord_enc.fit_transform(