Making (More) Advance Charts on Jupyter Notebook

Опубликовано: 16 Июль 2026
на канале: Palm Tree Investments
641
8

#Financialstatementanalysis #Jupyter

Timestamps
0:00 Intro
0:18 Code

Today I am going to be showing you how to make more advance charts for your FSA in Jupyter Notebook. Now I use the word "advanced" kinda loosely, because I feel like they are advanced for me and what I am going to be using them for. But in all honesty, the graphs I am showing you are really quite simple. I hope you enjoy!

Code
Part 3- More advance charts
Stacked

Financing Makeup
fig = go.Figure(data=[
go.Bar(name='Liab', x=BS.index, y=BS["Total Liabilities"]),
go.Bar(name='SE', x=BS.index, y=BS["Total Equity"])
])
Change the bar mode
fig.update_layout(barmode='stack')
fig.show()

Makeup of assets
fig = go.Figure(data=[
go.Bar(name='Cash', x=BS.index, y=BS["Cash, Cash Equivalents & Short Term Investments"]),
go.Bar(name='AR', x=BS.index, y=BS["Accounts & Notes Receivable"]),
go.Bar(name='Inv', x=BS.index, y=BS["Inventories"]),
go.Bar(name='Other ST', x=BS.index, y=BS["Other Short Term Assets"]),
go.Bar(name='PPE', x=BS.index, y=BS["Property, Plant & Equipment, Net"]),
go.Bar(name='Other LT', x=BS.index, y=BS["Other Long Term Assets"])

])
Change the bar mode
fig.update_layout(barmode='stack')
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
Making (More) Advance Charts on Jupyter Notebook

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