How to normalize the elements of an array within a time range?
php editor Xinyi introduces to you how to standardize the elements of the array within the time range. In development, we often need to process time series data, and these data may have time jumps or missing situations. In order to ensure the accuracy and completeness of the data, we need to standardize the elements in the array. Normalization puts the elements of an array in chronological order and fills in missing time points. Below, we'll detail how to implement this functionality.
Question content
I am trying to normalize an array of elements within a time range. Suppose you have 20 bank transactions that occurred on January 1, 2022
transaction 1 - 2022/01/01 transaction 2 - 2022/01/01 ... transaction 20 - 2022/01/01
We have no data other than the date they occur, but we still want to assign them an hour of the day, so they end up being:
transaction 1 - 2022/01/01 00:00 transaction 2 - 2022/01/01 ??:?? ... transaction 20 - 2022/01/01 23:59
In go, I have a function that tries to calculate the normalization of a time of day for an index in an array of elements:
func normal(start, end time.time, arraysize, index float64) time.time { delta := end.sub(start) minutes := delta.minutes() duration := minutes * ((index+1) / arraysize) return start.add(time.duration(duration) * time.minute) }
However, I accidentally calculated 2022/1/1 05:59 at index 0 in the 4-element array in the time range from 2022/1/1 00:00 to 2022/1/1 23:59. On the contrary, I would like to see 2022/1/1 00:00. The only one that works correctly under these conditions is index 3.
So, what am I doing wrong with normalization?
edit:
This is the function fixed by @icza
func timeindex(min, max time.time, entries, position float64) time.time { delta := max.sub(min) minutes := delta.minutes() if position < 0 { position = 0 } duration := (minutes * (position / (entries - 1))) return min.add(time.duration(duration) * time.minute) }
Here is an example: assuming our start and end dates are 2022/01/01 00:00
- 2022/01/01 00:03
, our bank transaction array There are 3 entries in and we want to get the normalized time of transaction No. 3 (2
in the array):
result := timeindex(time.date(2022, time.january, 1, 0, 0, 0, 0, time.utc), time.date(2022, time.january, 1, 0, 3, 0, 0, time.utc), 3, 2)
Since there are only 4 minutes between start time and end time (from 00:00
to 00:03
) and want to find array (size 3## The normalized time of the last entry (index
2) in #), the result should be:
fmt.Printf("%t", result.Equal(time.Date(2022, time.January, 1, 0, 3, 0, 0, time.UTC)) // prints "true"
00:03.
n points There are
n-1 segments. This means that if you want to include
start and
end in the interpolation, the number of time periods (i.e.
delta) is
arraysize - 1 .
1 to
index, the result cannot be
start (you will skip
00:00 ).
func normal(start, end time.time, arraysize, index float64) time.time { minutes := end.sub(start).minutes() duration := minutes * (index / (arraysize - 1)) return start.add(time.duration(duration) * time.minute) }
go playground.
Also note that if you have a lot of transactions (ordered by minute of the day, about a thousand) you can easily end up with multiple transactions with the same timestamp (same hour and minute). If you want to avoid this, use a precision smaller than minutes, such as seconds or milliseconds:
func normal(start, end time.time, arraysize, index float64) time.time { sec := end.sub(start).seconds() duration := sec * (index / (arraysize - 1)) return start.add(time.duration(duration) * time.second) }
If your transactions are on the order of seconds of a day (i.e. 86400), then you can remove this "unit" entirely and use
time.duration itself (i.e. nanoseconds). This will guarantee timestamp uniqueness even for the largest number of transactions:
func normal(start, end time.time, arraysize, index float64) time.time { delta := float64(end.sub(start)) duration := delta * (index / (arraysize - 1)) return start.add(time.duration(duration)) }
0 - 00:00:00.00000 1 - 00:00:00.08634 2 - 00:00:00.17268 3 - 00:00:00.25902 4 - 00:00:00.34536 5 - 00:00:00.43170 6 - 00:00:00.51804 7 - 00:00:00.60438 8 - 00:00:00.69072 9 - 00:00:00.77706 10 - 00:00:00.86340 11 - 00:00:00.94974 12 - 00:00:01.03608 13 - 00:00:01.12242 14 - 00:00:01.20876 15 - 00:00:01.29510 16 - 00:00:01.38144 17 - 00:00:01.46778 18 - 00:00:01.55412 19 - 00:00:01.64046
go playground.
The above is the detailed content of How to normalize the elements of an array within a time range?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to check data usage on Apple 1. The specific steps to check data usage on Apple mobile phone are as follows: Open the settings of the phone. Click the Cellular button. Scroll down on the cellular network page to see the specific data usage of each application. Click Apply to also set allowed networks. 2. Turn on the phone, find the settings option on the phone desktop, and click to enter. In the settings interface, find "Cellular Network" in the taskbar below and click to enter. In the cellular network interface, find the "Usage" option on the page and click to enter. 3. Another way is to check the traffic by yourself through the mobile phone, but the mobile phone can only see the total usage and will not display the remaining traffic: turn on the iPhone, find the "Settings" option and open it. Select "Bee"

Win11 system announced the new [Snapshot Layout], which provides users with various window layout options through the [Maximize] button, so that users can choose from multiple layout templates to display two, three or four on the screen. open applications. This is an improvement over dragging multiple windows to the sides of the screen and then adjusting everything manually. [SnapGroups] will save the collection of apps the user is using and their layout, allowing the user to easily return to that setting when they have to stop and deal with other things. If someone is using a monitor that the user must unplug, when re-docking, the previously used snapshot layout will also be restored. To use snapshot layout, we can use the keyboard shortcut WindowsKey+Z to start

1. First, after opening the vscode interface, click the settings icon button in the lower left corner of the page 2. Then, click the Settings option in the drop-down page column 3. Then, find the Explorer option in the jumped window 4. Finally, on the right side of the page Click the OpenEditorsnaming option, select the alphabetical button from the drop-down page and save the settings to complete the alphabetical sorting

The merge() method in Java Collections merges two sorted ordered collections to generate a new sorted collection, maintaining the original order. Syntax: public static <T> List<T> merge(SortedMap<T, Double> a, SortedMap<T, Double> b). It accepts two sorted collections and returns a new collection containing all elements in sorted order. Note: The values of duplicate keys will be merged according to the merge function, and the original collection will not be modified.

Performance optimization techniques in C++ include: Profiling to identify bottlenecks and improve array layout performance. Memory management uses smart pointers and memory pools to improve allocation and release efficiency. Concurrency leverages multi-threading and atomic operations to increase throughput of large applications. Data locality optimizes storage layout and access patterns and enhances data cache access speed. Code generation and compiler optimization applies compiler optimization techniques, such as inlining and loop unrolling, to generate optimized code for specific platforms and algorithms.

With the popularity of cryptocurrencies, virtual currency trading platforms have emerged. The top ten virtual currency trading platforms in the world are ranked as follows according to transaction volume and market share: Binance, Coinbase, FTX, KuCoin, Crypto.com, Kraken, Huobi, Gate.io, Bitfinex, Gemini. These platforms offer a wide range of services, ranging from a wide range of cryptocurrency choices to derivatives trading, suitable for traders of varying levels.

Windows 11 system can modify the desktop layout, so how to do it specifically? Let’s take a look below! To modify the desktop icon layout in Windows 11, you can follow the following steps: 1. Right-click a blank space on the desktop and select "Icon Layout". 2. In the icon layout menu, you can choose different layout options, including automatic arrangement of icons, grid layout, free arrangement of icons and hidden icons. 3. After selecting the appropriate layout option, your desktop icons will automatically be arranged according to the selected layout. Note: In Windows 11, desktop icons have relatively few setting options and are less customizable than previous Windows versions. If you need more advanced desktop customization settings, consider using

How to adjust Sesame Open Exchange to Chinese? This tutorial covers detailed steps on computers and Android mobile phones, from preliminary preparation to operational processes, and then to solving common problems, helping you easily switch the Sesame Open Exchange interface to Chinese and quickly get started with the trading platform.
