DolphinDB Community

556 posts

DolphinDB Community banner
DolphinDB Community

DolphinDB Community

@DolphinDB_Comm

Your go-to hub for all things #DolphinDB and more. Solutions, updates & exclusive features for your time series & real-time analytics journey.

New York شامل ہوئے Nisan 2025
1 فالونگ11 فالوورز
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
reciprocal(X) — element‑wise reciprocal (1/X) with DOUBLE output! 🔢 Works on scalars, vectors, and matrices—perfect for normalization, rates, and inverse transformations. #DolphinDB #MathFunctions
English
0
0
0
0
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
rdp(pointList, epsilon) — compress a POINT vector using the Ramer‑Douglas‑Peucker algorithm! 📦 Reduces number of points while preserving shape—ideal for geospatial data and curve simplification. #DolphinDB #Compression
English
0
0
0
8
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
ratios(X) — compute sequential ratios: Xᵢ / Xᵢ₋₁ (first element null)! 📈 Perfect for growth rates, returns, and period‑over‑period comparisons on vectors/matrices. #DolphinDB #TimeSeries #Ratios
English
0
0
0
0
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
polynomial(X, coeffs) — evaluate a polynomial p(x) = coeffs[0] + coeffs[1]·x + coeffs[2]·x² + … on each element of X! 📐 Fast vectorized evaluation for custom polynomial transformations and feature engineering. #DolphinDB #Polynomials
English
0
0
0
2
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
polyFit(X, Y, n, mode) — fit a degree‑n polynomial via least squares, returning coefficients (ascending powers) or a full model dict with prediction! 📈 Essential for curve fitting, trend analysis, and feature engineering. #DolphinDB #PolynomialRegression
English
0
0
0
3
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
point(X, Y) — create a 16‑byte POINT type (low 8 bytes = X, high 8 bytes = Y) for geospatial or 2D coordinates! 📍 Supports scalar/vector/matrix inputs—essential for location‑based analytics. #DolphinDB #Geospatial
English
0
0
1
8
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
plot(data, [labels], [title], [chartType], [stacking], [extras]) — create rich visualizations (LINE, BAR, PIE, SCATTER, SURFACE) from vectors, matrices, or tables! 📈 #DolphinDB #DataViz
English
0
0
1
6
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
percentile(X, percent, [interpolation]) — compute the exact percentile (0‑100) with flexible interpolation methods! 📊 Works on vectors, matrices, and tables—ignores nulls automatically. #DolphinDB #Statistics
English
0
0
1
3
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
percentChange(X, [n]) — compute element‑wise percentage change: (Xᵢ / Xᵢ₋ₙ) − 1! 📈 Ideal for growth rates, returns, and time‑series differencing—works on vectors and matrices. #DolphinDB #TimeSeries
English
0
0
1
5
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
peekAppend(engine, data) — preview calculation results without updating engine state or output! 👀 Perfect for testing, validation, and “what‑if” analysis on streaming engines. #DolphinDB #StreamProcessing
English
0
0
1
4
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
pdfChiSquare(df, X) — compute the probability density function (PDF) of a chi‑square distribution! 📊 Matches SciPy’s chi2.pdf—essential for hypothesis testing and statistical modeling. #DolphinDB #Statistics
English
0
0
1
1
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
partial(func, args…) — create a partially applied function by fixing some arguments! 🔗 Perfect for building specialized functions from generics, currying, and simplifying callbacks. #DolphinDB #FunctionalProgramming
DolphinDB Community tweet media
English
0
0
0
1
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
parseInteger(X, type, [radix]) — parse strings to integers with custom radix (2‑16), ignoring trailing garbage! 🔢 Robust for hex, binary, and mixed‑format numeric parsing—empty string → null. #DolphinDB #StringParsing
English
0
0
0
4
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
parseMktData(dict) — convert a dictionary or JSON string into a strongly typed MKTDATA object (Curve, Surface, Price)! 📈 Supports FX spots, yield curves, asset price curves, and volatility surfaces—foundation for pricing models. #DolphinDB #MarketData
English
0
0
0
2
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
parseJsonTable(json, [schema], [keyCaseSensitive]) — convert JSON objects directly into DolphinDB tables, with optional schema inference! 📋 Handles single/multiple objects, custom date formats, and case‑sensitive keys—perfect for API ingestion. #DolphinDB #JSON
English
0
0
0
1
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
pair(a, b) — create a pair (interval/range) from two scalars, supporting arithmetic and comparisons! ↔️ Essential for range‑based filtering, interval joins, and vectorized boundary operations. #DolphinDB #DataTypes
DolphinDB Community tweet media
English
0
0
0
0
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
parseExpr(X, [varDict], [modules], [overloadedOperators]) — convert strings to executable metacode, with optional variable binding, module loading, and operator overloading! 🔄 Powerful for dynamic SQL, expression evaluation, and metaprogramming. #DolphinDB #Metaprogramming
English
0
0
0
4
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
panel(row, col, metrics, [rowLabel], [colLabel], [parallel]) — pivot one or more vectors into matrices by row and column keys! 📊 Powerful alternative to pivotBy—supports multiple metrics and parallel execution for large datasets. #DolphinDB #Pivot
English
0
0
0
7
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
objByName(name, [sharedVar]) — fetch a variable (table/object) by name at runtime, with optional shared/local scoping! 🔍 Essential for remote execution where local parsing would fail—seamless cross‑node scripting. #DolphinDB #RemoteExecution
English
0
0
1
7
DolphinDB Community
DolphinDB Community@DolphinDB_Comm·
pack(format, args…) — pack data into a binary bytes object according to a format string (supports repeat counts & byte order)! 📦 Perfect for binary protocol serialization, file I/O, and cross‑language data exchange. #DolphinDB #BinarySerialization
DolphinDB Community tweet media
English
0
0
1
12