Giter VIP home page Giter VIP logo

dsnd_term2's Introduction

Data Scientist Nanodegree

This repository contains material related to Udacity's Data Scientist Nanodegree Program. It consists of tutorial notebooks for various data science topics. It also contains some of the project's template file for reference.

Table of Contents

Notes: The above-mentioned is not the complete curriculum of the Data Scientist Nanodegree program. There are much more things. To download the full curriculum, click here

Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. Please refer to Udacity Terms of Service for further information.

dsnd_term2's People

Contributors

abhiojha8 avatar andrewpaster avatar annyang1963 avatar anthonymiceli avatar debugger24 avatar dev-aentgs avatar emichris avatar gaston-udacity avatar gitznik avatar jeremy-dai avatar jjrunner avatar melipass avatar mirceast avatar nguyenhieuec avatar rajatsharma369007 avatar ronny-udacity avatar sai-krishna-msk avatar sudkul avatar tunoku avatar uanjali avatar vasthav avatar vishalghyv avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dsnd_term2's Issues

5_combining_data-solution.ipynb has bugs

file path

The solution file 5_combining_data-solution.ipynb from /lessons/ETLPipelines/5_combinedata_exercise/ has bugs.

The following two value_name are wrong.

df_rural_melt = pd.melt(df_rural,\
                        id_vars=['Country Name', 'Country Code', 'Indicator Name', 'Indicator Code'],\
                       var_name = 'Year', value_name='Electricity_Value')
df_electricity_melt = pd.melt(df_electricity,\
                              id_vars=['Country Name', 'Country Code', 'Indicator Name', 'Indicator Code'],\
                             var_name='Year', value_name='Rural_Value')

They should be:

df_rural_melt = pd.melt(df_rural,\
                        id_vars=['Country Name', 'Country Code', 'Indicator Name', 'Indicator Code'],\
                       var_name = 'Year', value_name='Rural_Value')
df_electricity_melt = pd.melt(df_electricity,\
                              id_vars=['Country Name', 'Country Code', 'Indicator Name', 'Indicator Code'],\
                             var_name='Year', value_name='Electricity_Value')

[Windows] Question Mark in filename is not allowed

I would like to checkout the repository in Windows. And I got the following message

Cloning into 'DSND_Term2'...
remote: Enumerating objects: 8, done.
remote: Counting objects: 100% (8/8), done.
remote: Compressing objects: 100% (8/8), done.
remote: Total 763 (delta 1), reused 2 (delta 0), pack-reused 755
Receiving objects: 100% (763/763), 24.24 MiB | 7.21 MiB/s, done.
Resolving deltas: 100% (254/254), done.
error: unable to create file lessons/CRISP_DM/What Happened? - Solution.ipynb: Invalid argument
error: unable to create file lessons/CRISP_DM/What Happened?.ipynb: Invalid argument
fatal: unable to checkout working tree
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry the checkout with 'git checkout -f HEAD'

I guess it is due to the fact that question mark is not allowed in Windows.

shirt.py file

There doesn't seem to be a shirt.py file from which to import the Shirt class

Error in "How to break into the field" notebook

In question 3 of this notebook, the docstring says: return 1 if the string is in ("Master's degree", "Doctoral", "Professional degree"). However, Doctoral is not one of the values in formal education:

>>> pd.unique(df.FormalEducation)
    array(['Secondary school',
       "Some college/university study without earning a bachelor's degree",
       "Bachelor's degree", 'Doctoral degree', "Master's degree",
       'Professional degree', 'Primary/elementary school',
       'I prefer not to answer', 'I never completed any formal education'],
      dtype=object)

This leads to a change in results, which doesn't seem to effect question 5. However, the group which suggests certain methods more changes in some cases
issue

Adding chart 5 break the columns because div tag hasn't been closed

When I was working on the Web Development lessons, the first div tag hasn't been closed. So it really messed up when adding chart 5.

Recommendation System - 4 - Collaborative Filtering missing pickle file

Hi there,

I tried to run the code, everything was fine until I ran into 4_Collaborative Filtering - Solution file. There is required a pickle file "corrs.p" [ corrs_import = pickle.load(open("corrs.p", "rb")) ].
It would be nice if you could help me this problem.

Thank you so much in advance!!!

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.