Jupyter Notebook Tutorial / Ipython Notebook Tutorial

preview_player
Показать описание
This tutorial will go over,
1) What is jupyter or ipython notebook?
2) Installation of jupyter notebook
3) Build first notebook using python pandas
4) Cover markdown and embedding video links
5) Plotting chart using matplotlib
6) What is line magic and cell magic and how to use them
7) Export notebook as py and html file

Рекомендации по теме
Комментарии
Автор

U r the first who created data science playlist, which makes sense and required by companies.
I loved ur tutorial from the first min. Of playlist.

Thank you so much from bottom of my heart ❤️

dishantkumbhar
Автор

I have seen %matplotlib inline a several times but this is the first time someone has shown the difference between what happens when you use it and when you don't. That is what beginners need. Thanks a lot! Looking forward to learn a lot.

sejalanand
Автор

Amazing tutorial! Normally I need to watch several videos to get the full understanding of something like this. I especially like how you simply explain the feature, show it, then move on. Most training videos drone on for far too long on simple things.

DaKLang
Автор

Nice and concise!! Love it :) Keep up the good work.

sibusisomoyo
Автор

Short and simple to understand.
Great job .

bhawin
Автор

Very clear and excellent example for the starter ... Thank you!

kevinzhang
Автор

Thank You very much. Getting to learn a lot from your videos. Amazing job!!!

khansaluqman
Автор

you explain it beautifully with utmost ease. thank you! i would recommend my python noob buddies to check this out.

mchandresh
Автор

So easy! Great tutorial. Greetings from Colombia!!

DiegoAndresAlvarezMarin
Автор

Thanks for an easy explanation. Waiting for the next part of this..

harshalkaushik
Автор

If you are using the latest version of Python 3 (I'm using Python 3.6 via Anaconda) the pandas.io.data has been deprecated and Google Finance API has become unreliable. As a result,
from pandas_datareader import data as web
df = web.DataReader('AAPL', 'google', '2016/1/1', '2017/1/1')
no longer works. Use the following
from pandas_datareader import data as web
from datetime import date
df = web.DataReader('S', 'morningstar', date(date.today().year, 1, 1), date.today())
df.tail()
before the above will work you will need to install DataReader in Python
pip install pandas-datareader

FoamyDave
Автор

Great tutorial, it definitely got me started! Unfortunately, I can't get the datareader to work.

HomelessOnline
Автор

Easy to understand for a beginner :) Thanks a lot! Please keep uploading more videos like this

ranjanjinka
Автор

Great Tutorial, thanks a lot! Could you extend that further? I guess there are a lot more options which are quite helpful.

DanielWeikert
Автор

It's awesome. Thanks for creating this video and sharing.

sivaprasadpandeti
Автор

Thankyou for the tutorial and wonderful explanation...

BhanuPrakash-bugi
Автор

Thanks for this tutorial. What cmd prompt are you using with the '$' symbol? Is this DOS? I get a c prompt not the dollar sign.

Dan-rnxm
Автор

Thank u so much for the video.. Here I can start quickly using jupyter notebook...

vinodkumarreddy
Автор

I want to create a 3D figure(cube) from python and the dimensions of the cube should be imported from excel file or any other csv file. That imported values should be used to create the 3d figure. Please tell me how to do

naveenm
Автор

I must the way you explanation is at top notch

SandeepChaudhary-vxzy