DolphinDB_Comm Profile Banner
DolphinDB Community Profile
DolphinDB Community

@DolphinDB_Comm

Followers
5
Following
50
Media
179
Statuses
204

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

New York
Joined April 2025
Don't wanna be here? Send us removal request.
@DolphinDB_Comm
DolphinDB Community
22 hours
rowDot(X, Y) computes row-wise dot products! ⚡. Works with same-length vectors/arrays or matching matrices. Array vectors need equal-length elements at each position. #DolphinDB #LinearAlgebra #RowOps
Tweet media one
0
0
1
@DolphinDB_Comm
DolphinDB Community
23 hours
rowDenseRank(X) computes row-wise dense rankings! 📊. Matches denseRank logic, with options for order/NA handling. Returns a matrix same size as X. #DolphinDB #Ranking #RowAnalytics.
0
0
1
@DolphinDB_Comm
DolphinDB Community
23 hours
rowCovar(X, Y) calculates row-wise covariance between X and Y! 📉. Outputs a vector with length matching input rows—great for per-row variance analysis. #DolphinDB #StatsTools #DataRelationships
Tweet media one
0
0
1
@DolphinDB_Comm
DolphinDB Community
24 hours
rowCount(args. ) tallies non-null values row by row! 📊. Returns a vector matching input row count—handy for tracking valid entries across rows. #DolphinDB #DataQuality #RowOperations
Tweet media one
0
0
0
@DolphinDB_Comm
DolphinDB Community
1 day
rowCorr(X, Y) computes row-wise correlations between X and Y! 📊. Returns a vector with length matching input rows—perfect for per-row relationship analysis. #DolphinDB #DataCorrelation #RowAnalytics
Tweet media one
0
0
0
@DolphinDB_Comm
DolphinDB Community
3 days
rowBeta(Y, X) calculates row-wise least squares regression coefficients! 📈. Gives a vector matching input row count—ideal for per-row Y-on-X regression estimates. #DolphinDB #Regression #DataAnalysis
Tweet media one
0
0
0
@DolphinDB_Comm
DolphinDB Community
3 days
rowAvg(args. ) computes element-wise averages row by row! 📐. Returns a vector matching input row count. Perfect for quick row-wise mean calculations across data. #DolphinDB #DataAnalysis #RowOperations
Tweet media one
0
0
0
@DolphinDB_Comm
DolphinDB Community
3 days
rowAt(X, [Y]) fetches elements by row indices in X! 🎯. Handles int/boolean Y: gets values at indices or where Y is true. Returns nulls for invalid indices. Flexible for matrices/vectors!. #DolphinDB #DataExtraction #RowOperations.
0
0
0
@DolphinDB_Comm
DolphinDB Community
3 days
Align financial bid/ask prices across time with rowAlign(left, right, how)! 🔄. Returns index tuples (-1 for no match). Pair with rowAt to fetch elements. Handles "bid"/"ask" vs "allBid"/"allAsk" differences. #DolphinDB #FinTech #PriceMatching.
0
0
0
@DolphinDB_Comm
DolphinDB Community
3 days
Finance tool alert: rowAlign(left, right, how) for bid/ask price alignment! 📈. Aligns row vectors, returns index tuple (-1 if no match). Pair with rowAt to fetch elements. Works for column tuples too—see demo for bid/ask differences!. #DolphinDB #PriceAlignment #FinTech.
0
0
0
@DolphinDB_Comm
DolphinDB Community
8 days
Want to reduce memory usage on DolphinDB nodes? 🛠️. Check memory stats with getSessionMemoryStat, then use objs to find unreleased variables. Simple steps for better memory management!. #DolphinDB #MemoryOptimization #NodeTips.
0
0
1
@DolphinDB_Comm
DolphinDB Community
8 days
Want groups with equal data sums? . Optimal solution is NP-hard. For approximate equal grouping, use built-in volumeBar function. Works well for most cases!. #DataGrouping #DolphinDB #EqualSums
Tweet media one
0
0
1
@DolphinDB_Comm
DolphinDB Community
9 days
Need to set step size for data retrieval in DolphinDB? . Create a custom range-like function! It lets you specify step sizes easily. Example code available. #DolphinDB #DataRetrieval #CustomFunctions
Tweet media one
0
0
0
@DolphinDB_Comm
DolphinDB Community
9 days
Need to filter data in a sliding window? . Nest iif for conditional filtering. Example: msum(iif(a>x,0,a), window) does the trick!. #SlidingWindows #DataFiltering #DolphinDB
Tweet media one
0
0
1
@DolphinDB_Comm
DolphinDB Community
9 days
Wondering if a table column is strictly monotonically increasing?. Use the isSorted function! It’s a simple way to check—see the example for how it works. #DolphinDB #TableChecks #DataValidation
Tweet media one
0
0
1
@DolphinDB_Comm
DolphinDB Community
9 days
Calculate X-Y inner product of top N elements in sliding windows with mwsumTopN! ⚡. Stably sorts X,Y by S (asc/desc), picks top N, computes inner product. Syntax: mwsumTopN(. ). #DolphinDB #SlidingWindows #InnerProduct
Tweet media one
0
0
1
@DolphinDB_Comm
DolphinDB Community
9 days
RT @DolphinDB_Inc: 🌐 The future of #IoT and connected systems depends on how well we can manage and analyze massive streams of data in real….
Tweet card summary image
medium.com
Since version 3.00.2/2.00.15, DolphinDB provides the IOTDB engine based on the TSDB engine for fine-grained and low-latency management of…
0
1
0
@DolphinDB_Comm
DolphinDB Community
12 days
Want to query leaf nodes with recursive CTE in DolphinDB? 🪴. You can achieve similar results using an equi join! Check out the attached code for implementation details. #DolphinDB #CTETricks #LeafNodeQuery
Tweet media one
0
0
2
@DolphinDB_Comm
DolphinDB Community
12 days
How to use a UDF in a GROUP BY clause? 🛠️. Your UDF must return a vector matching the table’s column length (think "data labels"). GROUP BY then groups by these labels. Example included!. #DolphinDB #UDFTips #GroupByTricks
Tweet media one
0
0
1
@DolphinDB_Comm
DolphinDB Community
22 days
Need to retain data with misaligned indices in matrix operations? . Use align to match indices first. Fill nulls with 0 (since nulls nullify sums) before calculating. Script included!. #DolphinDB #MatrixOps #DataHandling
Tweet media one
0
0
1