Garantie de satisfaction à 100% Disponible immédiatement après paiement En ligne et en PDF Tu n'es attaché à rien
logo-home
Summary Financial Services Analytics €11,89   Ajouter au panier

Resume

Summary Financial Services Analytics

1 vérifier
 291 vues  22 fois vendu

FSAN samenvatting van de slides die veranderd waren in academiejaar , waardoor vorige samenvattingen niet meer bruikbaar waren. Geslaagd met 16/20 Prof: Kris Boudt

Aperçu 4 sur 66  pages

  • 14 juin 2023
  • 66
  • 2022/2023
  • Resume
  • fsan
Tous les documents sur ce sujet (1)

1  vérifier

review-writer-avatar

Par: silkevermeersch • 10 mois de cela

avatar-seller
02brevetsvanity
FINANCIAL SERVICES
ANALYTICS

, PART 1: GENERAL TECHNIQUE FOR
TRANSFORMING DATA INTO ACTIONABLE
Page | 1 INSIGHTS
1. INTRODUCTION
1.1 INTRODUCTION TO THE COURSE
Goal = business value extraction from data for financial applications

Economic value of data:




1.2 THE RISE OF ANALYTICS IN THE FINANCIAL SERVICES SECTOR
Physical → Digital → Phygital

Why the trend to digitalization?
- Technology has changed
More communication on a digital advice leads to more data to store and process. Because of this
more and more decisions can be data-driven and automated

- Customers have changed
They are more demanding in terms of user experience, require personalization and low costs.
They embrace digitalization: they have a high trust in information technology firms, they interact
with an increasing number of digital devices, they accept that user data is used for corporate
purposes, and they accept to interact with robots.

- Regulation has changed
Payment Services EU Directive = PSD2
→ Banks are required to provide access to payments accounts for Third Party Providers (TPPs) on
the condition that the TPP has received permission from the bank customers to whom the
accounts belong.

- Bank’s profitability is under pressure
Return on equity below the cost of capital is unsustainable in the long run.

- Competition has increased
New entrants that specialize in 1 service. Ex. Apple Pay, Google Pay, …

- Covid-19
Drop in use of cash, no physical contact with bank

,Deloitte paper → Banks that digitalized early on deliver the
best user experience in account opening, transfers and buying a
credit product

Hurdles in the transformation:
- Cost of the transformation (IT, data, new staff)
Cost of digitalization = hardware, software, data, skilled Page | 2
people
=K+M*n
= Fixed cost + Marginal cost (variable cost) * number of users

For digitalization fixed costs are high. Ex. of fixed costs are security, …
What matters for profitability is the average cost per user:
𝐾
 Average cost per user = + 𝑀
𝑛

The more users the lower the average cost per user ➔ Advantage for big banks with many users,
since the cost per user is lower.

- People: war for talent
People who can make the data tell its story are in high demand

- Technology: Fast evolving
Staying up to date is challenging (cost, people, vision)

- Vision: Proactivity and persistence, as it takes time
C-suite at banks have a chief digital officer, chief information officer, chief data officer.

Consequence: Banks are becoming very good at providing digital service and look beyond the services of a
bank. For example, KBC wishes to become the Bol.com of services.

1.3 INTRODUCTION TO R
Environment: shows existing objects
File > New File > R-script: to save the code to use it later
Use # to add comments

Object
→ In R everything is an object
→ Assign the value using a left arrow “<- “

Data types
→ Character = text
→ Numeric = numbers
→ Boolean = TRUE or FALSE

Data structures
→ Vector: created using c()
→ Data frame: created using data.frame()
→ Matrix: created using matrix(), the first argument is the vector you want changed into a vector, the
second argument is the number of columns (ncol = …)

Selection of elements
→ To select an object in a vector or data frame we use [], when selecting objects in a matrix use [, ]
the first number is the row and the second the column

, 2. FROM DATA TO INSIGHTS
We have an abundance of data.
R has data available in the program. We can access it through R commands.

What we observe on day t: DATAt
Page | 3 What we assume: DATAt = SIGNALt + NOISEt
What we want to know: SIGNALt

The signal gives us actionable insights on day t. The signal needed depends on the insights one wants to
get.

How?
The price data themselves need to be transformed to yield insights.
Ex.: - Smoothening the price data by taking averages
- Studying financial risk and reward by computing returns
- Time series aggregation: from individual trades (intraday) to daily, weekly, … observations

 These transformations are done repeatedly and are best programmed as functions.

2.1 FUNCTIONS IN R
General syntax of a function:
A function has a number of arguments and using
these the functions will do a calculation.




Functions are just like data objects in R. The advantage of functions is that they contain reusable code:
reduces workload, helps to avoid errors.

Ex. Function that computes the square
Power 2 <- function ( x ) {
out <- x^2
return (out)
}
= function definition

To use the function: power2 (3)

The advantage of a statistical software environment like R is most of the functions already exist. Functions
in R are shared through packages:
- Base packages are automatically installed when you install R. They are loaded automatically every
time you open R.
o Statistical functions: mean(), min(), max(), median(), sd(), IQR() = 3rd quartile – 1st quartile,
summary()
o Graphical tools: plot(), hist(), qqplot(), boxplot(), …
o Object handling functions: read.table(), read.csv(), readRDS(), save.RDS(), write.csv(), …
o Probability functions: rnorm(), pnorm(), qnorm(), rt(), qt(), …
- Other packages need to be installed and need to be loaded. → library (“name of package”) Ex.
quantmod: useful for quantitative modelling

In R: “?name of function” → gives you an explanation of the function
To save the data, define a working directory and the results will be saved there.

Les avantages d'acheter des résumés chez Stuvia:

Qualité garantie par les avis des clients

Qualité garantie par les avis des clients

Les clients de Stuvia ont évalués plus de 700 000 résumés. C'est comme ça que vous savez que vous achetez les meilleurs documents.

L’achat facile et rapide

L’achat facile et rapide

Vous pouvez payer rapidement avec iDeal, carte de crédit ou Stuvia-crédit pour les résumés. Il n'y a pas d'adhésion nécessaire.

Focus sur l’essentiel

Focus sur l’essentiel

Vos camarades écrivent eux-mêmes les notes d’étude, c’est pourquoi les documents sont toujours fiables et à jour. Cela garantit que vous arrivez rapidement au coeur du matériel.

Foire aux questions

Qu'est-ce que j'obtiens en achetant ce document ?

Vous obtenez un PDF, disponible immédiatement après votre achat. Le document acheté est accessible à tout moment, n'importe où et indéfiniment via votre profil.

Garantie de remboursement : comment ça marche ?

Notre garantie de satisfaction garantit que vous trouverez toujours un document d'étude qui vous convient. Vous remplissez un formulaire et notre équipe du service client s'occupe du reste.

Auprès de qui est-ce que j'achète ce résumé ?

Stuvia est une place de marché. Alors, vous n'achetez donc pas ce document chez nous, mais auprès du vendeur 02brevetsvanity. Stuvia facilite les paiements au vendeur.

Est-ce que j'aurai un abonnement?

Non, vous n'achetez ce résumé que pour €11,89. Vous n'êtes lié à rien après votre achat.

Peut-on faire confiance à Stuvia ?

4.6 étoiles sur Google & Trustpilot (+1000 avis)

80364 résumés ont été vendus ces 30 derniers jours

Fondée en 2010, la référence pour acheter des résumés depuis déjà 14 ans

Commencez à vendre!
€11,89  22x  vendu
  • (1)
  Ajouter