Word Cloud
FinTech Disruption
Financial technology innovation terms
Output
Python
import matplotlib.pyplot as plt
from wordcloud import WordCloud
text = """FinTech Digital Banking Neobank Challenger Bank Mobile Payment
Apple Pay Google Pay Venmo PayPal Stripe Square Block Adyen Plaid
Buy Now Pay Later BNPL Klarna Affirm Afterpay Installments Credit
Robo Advisor Algorithmic Trading High Frequency Quantitative
Open Banking API PSD2 Embedded Finance Banking as a Service BaaS
Stablecoin CBDC Central Bank Digital Currency Digital Dollar Euro
RegTech Compliance KYC AML Identity Verification Fraud Detection"""
def gold_money(word, font_size, position, orientation, random_state=None, **kwargs):
colors = ['#fbbf24', '#f59e0b', '#d97706', '#F5B027', '#eab308']
return colors[hash(word) % len(colors)]
wordcloud = WordCloud(
width=1200, height=600,
background_color='#0a0a0f',
color_func=gold_money,
max_words=75,
max_font_size=125,
min_font_size=11,
relative_scaling=0.5
).generate(text)
fig, ax = plt.subplots(figsize=(12, 6), facecolor='#0a0a0f')
ax.imshow(wordcloud, interpolation='bilinear')
ax.axis('off')
plt.tight_layout(pad=0)
plt.show()
Library
Matplotlib
Category
Text Visualization
More Word Cloud examples
☕