
DolphinDB Community
@DolphinDB_Comm
Followers
4
Following
42
Media
101
Statuses
112
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
Compute skewness in sliding windows with mskew! π. Calculate skewness of X in windows (by element count or time). Syntax: mskew(X, window, [biased=true], [minPeriods]). #DolphinDB #SlidingWindow #Statistics
0
0
1
Calculate population std dev of top N elements in sliding windows! π. mstdpTopN(X, S, window, top, ascending) sorts X by S in each window, takes top N, computes STD. #DolphinDB #SlidingWindow #Statistics
0
0
1
RT @DolphinDB_Inc: π’ At the 2025 Mid-Year Strategy Conference hosted by Guotai Junan Futures, our CEO Dr. Zhou Xiaohua was honored to speakβ¦.
0
1
0
Map-Reduce is core to DolphinDB's distributed computing! π. Here's an example of distributed linear regression using Map-Reduce. #DolphinDB #MapReduce #DistributedComputing
0
0
1
Compute sliding window products with mprod! π. Calculate product of X elements in windows defined by element count or time. Syntax: mprod(X, window, [minPeriods]). #DolphinDB #SlidingWindow #DataCalculation
0
0
1
Understand movingWindowIndex! π. Returns an array of indices for elements in each sliding window of X. #DolphinDB #SlidingWindow #IndexManipulation
0
0
1
RT @DolphinDB_Inc: π₯ Facing memory pressure in #DolphinDB?. π Dive into the full guide: Our latest technical guideβ¦.
0
1
0
Understand movingTopNIndex! π. Returns an array of indices for the top N elements in each sliding window of X, sorted as specified. #DolphinDB #SlidingWindow #IndexManipulation
0
0
1
Understand movingWindowData(X, window, [fixed=false])! π. Returns an array where each row holds elements of X's sliding windows. #DolphinDB #SlidingWindow #DataProcessing
0
0
1
Move chunk replicas between nodes with moveReplicas! π. Example: Move all chunk replicas from "node1" to "node2's" specified dir:. #DolphinDB #DistributedStorage #ClusterOps
0
0
1
Find elements in vector A but not in B in #DolphinDB! π.2 easy methods:. #DolphinDB #DataManipulation #Vectors
0
0
1
Window stats in #DolphinDB like Oracle's PARTITION BY! π. Use context by for partitioning:. #DolphinDB #SQLComparison #WindowFunctions
0
0
1
π§Dynamic column fetching in #DolphinDB! . Use metaprogramming with select to get multiple columns:.select colNames()[idx1, idx2. ] from table. #DolphinDB #MetaProgramming #DataQuery
0
0
1
RT @DolphinDB_Inc: πExcited to share that #DolphinDB is partnering with the #FICCPKU Club for an exclusive in-person event in Beijing on Thβ¦.
0
1
0
TSDB Engine Error: "sort keys must be specified" β οΈ. When creating a distributed table with TSDB engine, you must specify the sortColumns parameter!.Example:.db = database("", TSDB, sortColumns=[time])`. #DolphinDB #TSDB #DistributedTables
0
0
1
Subscribe to cross-process SHM tables via API in #DolphinDB! π. Server creates SHM table via GUI & writes data live. Use subscribeTable() API with proper parameters to stream updates. #DolphinDB #RealTimeData #InterProcessComm
0
0
1
Split data into N groups by value! π. Use cutPoints & asof for uniform binning. #DolphinDB #DataBinning #DistributedStorage #ClusterManagement
0
0
1
RT @DolphinDB_Inc: π Optimizing SQL in #DolphinDB Just Got Easier β Introducing the SQL Execution Plan Feature. π Learn how it works and geβ¦.
0
1
0
Move chunk replicas between nodes with moveReplicas! π. Moves chunk copies from source to target nodes. Skips existing chunks on targets. Requires admin privileges & run on the control node. #DolphinDB #DistributedStorage #ClusterManagement
0
0
3
Extract month from dates with monthOfYear(X)! ποΈ. Returns month (1-12) for DATE, MONTH, DATETIME, TIMESTAMP, or NANOTIMESTAMP scalars, vectors, or tables. #DolphinDB #TimeSeries #DateFunctions
0
0
3