#Financialstatementanalysis #Jupyter
If you haven't watched part one, make sure to do that!
• Importing an Excel into Jupyter Notebook- ...
Time Stamps
0:00 Introduction
0:45 The Code
5:41 Demonstrating the ease of coding for FSA
7:22 Conclusion
Code-
Part 2- Making Simple Graphs
2.1 install what you need- graphing
!pip install chart_studio- first time worked w/o !, after that w/o ! would cause error
import chart_studio
chart_studio.tools.set_credentials_file(username="", api_key="")
import plotly.graph_objs as go
2.2 Transpose data to a useable format
Transpose- flip columns and rows
df_PL = df_PL.T
df_BS = df_BS.T
df_CF = df_CF.T
Making and easier file name
IS = df_PL
BS = df_BS
CF = df_CF
2.3 FIRST GRAPH!
fig = go.Figure(data=[
go.Bar(name='cash', x=BS.index, y=BS["Long Term Debt"])])
fig.show()
line graph
fig = go.Figure(data=go.Scatter(x=BS.index, y=BS["Long Term Debt"]))
fig.show()
Follow my Instagram!
/ palmtreeinvestments01
Beats made by Jawkward, check him out here
/ jawkward
Art and Animation made by JP, check him out here
/ redheadbandits
Disclaimer: I'm not a licensed investment advisor, and today's video (and spreadsheet) is just for entertainment and fun. This video (and spreadsheet) is NOT investment advice. Also, I'm not a tax advisor and today's video (and spreadsheet) is NOT tax advice. Please talk to your licensed investment advisor before making any financial decisions. Please talk to your licensed tax advisor before making any tax decisions.
I make no representations as to the accuracy, completeness, suitability or validity of any information. I will not be liable for any errors, omissions, losses, injuries or damages arising from its display or use. All information is provided AS IS with no warranties, and confers no rights. I will not be responsible for the accuracy of material that is linked on this site.
Your continued reading/use of my YouTube Channel, blog, Excel files, and other materials constitutes your agreement with and acceptance of this disclaimer.
Title
How to make simple graphs on Jupyter Notebook- Financial Statement Analysis
Tags
palm tree investments,Taewoo kim,jupyter notebook financial statement analysis,python financial statement analysis,python financial analysis,jupyter notebook financial analysis,excel to python,excel to jupyter,financial statements python,financial statements jupyter,automate financial statement analysis,How to make simple graphs on Jupyter Notebook- Financial Statement Analysis,jupyter chart,jupyter chart studio,jupyter notebook charts,jupyter notebook bar chart