我在发送HTTP请求之前,想知道如何使用当前的cookie会话(由Web服务给出或将由我随机提供)。
以下是我在PHP中的表现。
# Example Dataframe
df = pd.DataFrame({'a' : [25, 22, 22, 21, 45, 20, 1, 1, 1, 1, 2, 3, 4, 4, 4]})
cuts = pd.cut(df['a'], [0, 10, 50])
cuts.value_counts().plot(kind='bar')
在Excel VBA中执行此操作时使用的等效代码是什么?
PS:我顺便使用WinHTTPRequest。