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

Compartir libro
  1. 520 páginas
  2. English
  3. ePUB (apto para móviles)
  4. Disponible en iOS y Android
eBook - ePub

Data Analysis for Corporate Finance

Building financial models using SQL, Python, and MS PowerBI

Mariano F. Scandizzo CFA CQF

Detalles del libro
Vista previa del libro
Índice
Citas

Información del 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.

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es Data Analysis for Corporate Finance un PDF/ePUB en línea?
Sí, puedes acceder a Data Analysis for Corporate Finance de Mariano F. Scandizzo CFA CQF en formato PDF o ePUB, así como a otros libros populares de Business y Corporate Finance. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Año
2021
ISBN
9781649527226
Categoría
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...

Índice