Comes from: https://www.analyticsvidhya.com/blog/2017/05/questions-python-for-data-science/ Python is increasingly becoming popular among data science enthusiasts, and for right reasons. It brings the entire ecosystem of a general programming languag…
Intermediate Python for Data Science | DataCamp https://www.datacamp.com/courses/intermediate-python-for-data-science The intermediate python course is crucial to your data science curriculum. Learn to visualize real data with matplotlib's functions…
Histograms from:https://campus.datacamp.com/courses/intermediate-python-for-data-science/matplotlib?ex=7 Build a histogram (1) life_exp, the list containing data on the life expectancy for different countries in 2007, is available in your Python shel…
Basic plots with matplotlib from:https://campus.datacamp.com/courses/intermediate-python-for-data-science/matplotlib?ex=1 Line plot (1) With matplotlib, you can create a bunch of different plots in Python. The most basic plot is the line plot. A gene…
NumPy: Basic Statistics from:https://campus.datacamp.com/courses/intro-to-python-for-data-science/chapter-4-numpy?ex=13 Average versus median You now know how to use numpy functions to get a better feeling for your data. It basically comes down to im…
2D NumPy Arrays from:https://campus.datacamp.com/courses/intro-to-python-for-data-science/chapter-4-numpy?ex=9 Your First 2D NumPy Array # Create baseball, a list of listsbaseball = [[180, 78.4],[215, 102.7],[210, 98.5],[188, 75.2]] # Import numpyimp…
NumPy From:https://campus.datacamp.com/courses/intro-to-python-for-data-science/chapter-4-numpy?ex=1 Your First NumPy Array # Create list baseballbaseball = [180, 215, 210, 210, 188, 176, 209, 200] # Import the numpy package as npimport numpy as np #…
Packages From:https://campus.datacamp.com/courses/intro-to-python-for-data-science/chapter-3-functions-and-packages?ex=10 Import package As a data scientist, some notions of geometry never hurt. Let's refresh some of the basics.We can do this by impo…
Methods From:https://campus.datacamp.com/courses/intro-to-python-for-data-science/chapter-3-functions-and-packages?ex=6 String Methods Strings come with a bunch of methods. Follow the instructions closely to discover some of them. If you want to disc…
Functions from:https://campus.datacamp.com/courses/intro-to-python-for-data-science/chapter-3-functions-and-packages?ex=1 Familiar functions output = function_name(input)such as result = type(3.0) # Create variables var1 and var2var1 = [1, 2, 3, 4]va…