• bitcoinBitcoin(BTC)$77,256.000.62%
  • ethereumEthereum(ETH)$2,514.382.60%
  • tetherTether(USDT)$1.000.02%
  • binancecoinBNB(BNB)$727.882.26%
  • rippleXRP(XRP)$1.361.47%
  • usd-coinUSDC(USDC)$1.00-0.01%
  • solanaSolana(SOL)$102.223.44%
  • tronTRON(TRX)$0.338745-0.51%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.03-0.34%
  • zcashZcash(ZEC)$1,161.926.67%
  • HyperliquidHyperliquid(HYPE)$78.98-0.23%
  • dogecoinDogecoin(DOGE)$0.0843901.34%
  • RainRain(RAIN)$0.015423-2.10%
  • moneroMonero(XMR)$522.762.15%
  • USDSUSDS(USDS)$1.000.01%
  • whitebitWhiteBIT Coin(WBT)$80.170.85%
  • chainlinkChainlink(LINK)$11.530.49%
  • leo-tokenLEO Token(LEO)$9.15-0.40%
  • cardanoCardano(ADA)$0.2064870.30%
  • stellarStellar(XLM)$0.1791682.13%
  • Ethena USDeEthena USDe(USDE)$1.000.03%
  • bitcoin-cashBitcoin Cash(BCH)$229.491.69%
  • daiDai(DAI)$1.000.01%
  • USD1USD1(USD1)$1.000.04%
  • litecoinLitecoin(LTC)$53.261.66%
  • CantonCanton(CC)$0.097673-0.54%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.360.48%
  • uniswapUniswap(UNI)$6.040.18%
  • Global DollarGlobal Dollar(USDG)$1.00-0.01%
  • avalanche-2Avalanche(AVAX)$7.470.03%
  • hedera-hashgraphHedera(HBAR)$0.074449-0.90%
  • nearNEAR Protocol(NEAR)$2.36-4.91%
  • shiba-inuShiba Inu(SHIB)$0.0000052.74%
  • suiSui(SUI)$0.73-0.46%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.01%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • crypto-com-chainCronos(CRO)$0.0565180.49%
  • MemeCoreMemeCore(M)$1.205.09%
  • tether-goldTether Gold(XAUT)$4,350.410.58%
  • Circle USYCCircle USYC(USYC)$1.140.03%
  • Ripple USDRipple USD(RLUSD)$1.000.00%
  • okbOKB(OKB)$113.223.71%
  • BittensorBittensor(TAO)$236.050.15%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.150.02%
  • aaveAave(AAVE)$125.253.11%
  • mantleMantle(MNT)$0.582.23%
  • pax-goldPAX Gold(PAXG)$4,356.620.61%
  • AsterAster(ASTER)$0.68-3.07%
  • polkadotPolkadot(DOT)$1.05-6.48%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.054915-2.32%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

A Coding Tutorial on Datashader on Rendering Massive Datasets with High-Performance Python Visual Analytics

April 26, 2026
in AI & Technology
Reading Time: 3 mins read
A A
A Coding Tutorial on Datashader on Rendering Massive Datasets with High-Performance Python Visual Analytics
ShareShareShareShareShare

YOU MAY ALSO LIKE

Balancing AI Risks With the Race to Stay Ahead of China

Microsoft’s Data Center Plans Face Big Costs

import subprocess, sys
subprocess.check_call([sys.executable, "-m", "pip", "install", "-q",
                      "datashader", "colorcet", "numba", "scipy"])


import numpy  as np
import pandas as pd
import datashader as ds
import datashader.transfer_functions as tf
from datashader import reductions as rd
import colorcet as cc
import matplotlib.pyplot as plt
import matplotlib.colors as mcolors
from matplotlib.gridspec import GridSpec
from scipy.stats import multivariate_normal
import time, warnings
warnings.filterwarnings("ignore")


print("Datashader version:", ds.__version__)


def show(img, title="", ax=None, figsize=(6, 5)):
   standalone = ax is None
   if standalone:
       fig, ax = plt.subplots(figsize=figsize)
   rgba = img.to_pil()
   ax.imshow(rgba, origin="upper", aspect="auto")
   ax.set_title(title, fontsize=11, fontweight="bold")
   ax.axis("off")
   if standalone:
       plt.tight_layout()
       plt.show()


print("\n=== SECTION 1: Core Pipeline ===")


rng = np.random.default_rng(42)
N   = 2_000_000


x = np.concatenate([rng.normal(-1, 0.5, N//3),
                   rng.normal( 1, 0.5, N//3),
                   rng.normal( 0, 1.5, N//3)])
y = np.concatenate([rng.normal(-1, 0.5, N//3),
                   rng.normal( 1, 0.5, N//3),
                   rng.normal( 0, 0.5, N//3)])
df_base = pd.DataFrame({"x": x, "y": y})


canvas = ds.Canvas(plot_width=600, plot_height=500,
                  x_range=(-4, 4), y_range=(-4, 4))


agg = canvas.points(df_base, "x", "y", agg=rd.count())


fig, axes = plt.subplots(1, 3, figsize=(15, 4))
combos = [
   ("Linear / blues",  tf.shade(agg, cmap=cc.blues,        how="linear")),
   ("Log    / fire",   tf.shade(agg, cmap=cc.fire,         how="log"   )),
   ("Eq-hist / bmy",   tf.shade(agg, cmap=cc.bmy,          how="eq_hist")),
]
for ax, (title, img) in zip(axes, combos):
   show(img, title, ax=ax)
plt.suptitle("Section 1 – 2 M points: Linear vs Log vs Eq-Hist normalisation",
            fontsize=13, fontweight="bold")
plt.tight_layout()
plt.show()


print("\n=== SECTION 2: Reduction Types ===")


n_actual = len(df_base)
df_base["value"] = rng.exponential(scale=2, size=n_actual)
df_base["label"] = pd.Categorical(
   rng.choice(["A", "B", "C"], size=n_actual),
   categories=["A", "B", "C"]
)


canvas2 = ds.Canvas(plot_width=400, plot_height=350,
                   x_range=(-4, 4), y_range=(-4, 4))


reductions_cfg = [
   ("count()",          rd.count(),                 cc.kbc),
   ("sum(value)",       rd.sum("value"),             cc.CET_L3),
   ("mean(value)",      rd.mean("value"),            cc.CET_D4),
   ("std(value)",       rd.std("value"),             cc.CET_L16),
   ("min(value)",       rd.min("value"),             cc.CET_L17),
   ("max(value)",       rd.max("value"),             cc.bgyw),
   ("var(value)",       rd.var("value"),             cc.CET_L18),
   ("count_cat(label)", rd.count_cat("label"),       None),
]


fig, axes = plt.subplots(2, 4, figsize=(18, 9))
axes = axes.flat


for ax, (name, agg_fn, cmap) in zip(axes, reductions_cfg):
   agg_r = canvas2.points(df_base, "x", "y", agg=agg_fn)
   if cmap is None:
       img = tf.shade(agg_r, color_key={"A":"#e41a1c","B":"#377eb8","C":"#4daf4a"})
   else:
       img = tf.shade(agg_r, cmap=cmap, how="eq_hist")
   show(img, name, ax=ax)


plt.suptitle("Section 2 – All Reduction Types on 2 M points", fontsize=14, fontweight="bold")
plt.tight_layout()
plt.show()


print("\n=== SECTION 3: Categorical Visualisation ===")


N_cat = 500_000
categories = ["Cluster A", "Cluster B", "Cluster C", "Cluster D"]
centers = [(-2, -2), (-2, 2), (2, -2), (2, 2)]
colors  = {"Cluster A":"#e41a1c","Cluster B":"#377eb8",
          "Cluster C":"#4daf4a","Cluster D":"#ff7f00"}


frames = []
for cat, (cx, cy) in zip(categories, centers):
   n = N_cat // len(categories)
   frames.append(pd.DataFrame({
       "x":    rng.normal(cx, 0.8, n),
       "y":    rng.normal(cy, 0.8, n),
       "cat":  pd.Categorical([cat]*n, categories=categories),
   }))
df_cat = pd.concat(frames, ignore_index=True)


canvas3 = ds.Canvas(plot_width=500, plot_height=500,
                   x_range=(-5, 5), y_range=(-5, 5))
agg_cat = canvas3.points(df_cat, "x", "y", agg=rd.count_cat("cat"))


fig, axes = plt.subplots(1, 3, figsize=(16, 5))


img_raw  = tf.shade(agg_cat, color_key=colors)
show(img_raw, "Raw (no spread)", ax=axes[0])


img_sp1  = tf.spread(tf.shade(agg_cat, color_key=colors), px=1)
show(img_sp1, "Spread px=1", ax=axes[1])


img_bg   = tf.set_background(tf.shade(agg_cat, color_key=colors), color="black")
show(img_bg, "Black background", ax=axes[2])


for cat, col in colors.items():
   axes[2].plot([], [], "o", color=col, label=cat, markersize=8)
axes[2].legend(loc="lower right", fontsize=8, framealpha=0.6)


plt.suptitle("Section 3 – Categorical Rendering (500 k points)", fontsize=13, fontweight="bold")
plt.tight_layout()
plt.show()

Credit: Source link

ShareTweetSendSharePin

Related Posts

Balancing AI Risks With the Race to Stay Ahead of China
AI & Technology

Balancing AI Risks With the Race to Stay Ahead of China

September 12, 2026
Microsoft’s Data Center Plans Face Big Costs
AI & Technology

Microsoft’s Data Center Plans Face Big Costs

September 12, 2026
Baseten Adds DeepSeek-V4.1-Flash to Model APIs With 1M-Token Context – Unite.AI
AI & Technology

Baseten Adds DeepSeek-V4.1-Flash to Model APIs With 1M-Token Context – Unite.AI

September 11, 2026
Moss Developer Polyarc Has Closed
AI & Technology

Moss Developer Polyarc Has Closed

September 11, 2026
Next Post
Shortage of critical specialty doctor impacts patients nationwide

Shortage of critical specialty doctor impacts patients nationwide

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
Ohio gubernatorial candidate Amy Acton ‘lunged at’ by armed person, campaign says – Politico

Ohio gubernatorial candidate Amy Acton ‘lunged at’ by armed person, campaign says – Politico

September 7, 2026
Grocers file antitrust suit to block Mamdami admin’s plan for NYC-owned supermarkets: ‘Predatory pricing’

Grocers file antitrust suit to block Mamdami admin’s plan for NYC-owned supermarkets: ‘Predatory pricing’

September 9, 2026
Man gets two life sentences for killing Minnesota lawmaker

Man gets two life sentences for killing Minnesota lawmaker

September 6, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!