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

Condividi libro
  1. 520 pagine
  2. English
  3. ePUB (disponibile sull'app)
  4. Disponibile su iOS e Android
eBook - ePub

Data Analysis for Corporate Finance

Building financial models using SQL, Python, and MS PowerBI

Mariano F. Scandizzo CFA CQF

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

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.

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
Data Analysis for Corporate Finance è disponibile online in formato PDF/ePub?
Sì, puoi accedere a Data Analysis for Corporate Finance di Mariano F. Scandizzo CFA CQF in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Business e Corporate Finance. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Anno
2021
ISBN
9781649527226
Argomento
Business
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...

Indice dei contenuti