Data Analysis for Corporate Finance
eBook - ePub

Data Analysis for Corporate Finance

Building financial models using SQL, Python, and MS PowerBI

Mariano F. Scandizzo CFA CQF

Buch teilen
  1. 520 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

Data Analysis for Corporate Finance

Building financial models using SQL, Python, and MS PowerBI

Mariano F. Scandizzo CFA CQF

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

Have you ever tried to learn to code or to use advanced visualization tools? If so, I am sure you know how daunting it is to learn by yourself.

Generally, tools and books follow an encyclopedism approach, i.e., books attempt to teach every feature about a coding language or tool. This implies hundreds, if not thousands of pages simply to tackle a single topic, whether SQL, Python, MS Excel, MS PowerBI, you name it. The journey from zero to hero to become proficient using numerical and visualization tools to take your career to the next level becomes an ordeal that requires years and thousands of pages just to begin putting the pieces of the puzzle together. However, the reality is that you do not need to learn absolutely every available feature to use those tools and deliver a superior project.

Rather than teaching you about the forest, I will discuss specific trees. Why? Because once you become familiar and confident nurturing a few trees, growing a forest becomes a simple process of planting new trees. This book provides the fundamental blocks so that you can learn about financial data science and take these tools and start using them tomorrow. The scope of the selected tools will empower you to see a considerable improvement in your financial modeling skills.

The book is designed to provide corporate finance professionals the ability to start immediately using advance tools for concrete real-world tasks.

Therefore, this book is all about functionalism. It is about providing you with tools that will put you to work and dramatically change the way you analyze data. Once you see the benefits, it will become natural to keep expanding your domain knowledge, leveraging today's endless available educational resources.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist Data Analysis for Corporate Finance als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu Data Analysis for Corporate Finance von Mariano F. Scandizzo CFA CQF im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Business & Corporate Finance. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Jahr
2021
ISBN
9781649527226
Chapter 5
Pandas
“The goal is to turn data into information, and information in insight.”
Carly Fiorina
Introduction
We have reached the cornerstone of our data science applied to finance journey. It is as certain as death and taxes that anything you do regarding numerical analysis, visualizations, machine learning, simulations, etc. will be related in one way or the other to a Pandas dataframe. In line with that fundamental aspect of the Python’s state of the art, this chapter will be fully dedicated to exploring Pandas. There are three clear aspects which summarize dataframe operations:
  1. Importing and exporting data into/ from a dataframe
  2. Manipulating data
  3. Table manipulations such as merge, join or concatenate
We will touch each of the above topics in great detail to ensure a good understanding of this de facto library.
I will begin by formally introducing pandas. Pandas is named after the panel data econometric term. In a sense, Pandas is built on top of NumPy. For example, NumPy universal functions will generally work on Pandas objects as well. On a rather fundamental level, the dataframe class is designed to manage indexed and labeled data.
Dataframes can be created in the following ways...

Inhaltsverzeichnis