Tagged articles
16 articles
Page 1 of 1
ByteFE
ByteFE
Nov 22, 2023 · Frontend Development

Introducing Multi‑Dimensional (Pivot) Tables with VTable: Concepts, Configuration, and Business Scenarios

This article explains the fundamentals of multi‑dimensional (pivot) tables, describes core BI concepts such as dimensions, hierarchies, members and indicators, and shows how VTable maps these concepts to configuration options, data analysis features, custom dimension trees, and real‑world use cases.

ConfigurationData visualizationVTable
0 likes · 11 min read
Introducing Multi‑Dimensional (Pivot) Tables with VTable: Concepts, Configuration, and Business Scenarios
Python Programming Learning Circle
Python Programming Learning Circle
Jul 13, 2022 · Fundamentals

Eight Useful Python Techniques for Data Analysis: List Comprehensions, Lambda, Map/Filter, NumPy arange/linspace, Pandas Axis, Concat/Merge/Join, Apply, and Pivot Tables

This article presents eight practical Python data‑analysis techniques—including one‑line list definitions, lambda expressions, map and filter functions, NumPy arange/linspace, Pandas axis handling, DataFrame concatenation/merging/joining, the apply method, and pivot tables—each illustrated with clear code examples and explanations.

LambdaNumPyPython
0 likes · 7 min read
Eight Useful Python Techniques for Data Analysis: List Comprehensions, Lambda, Map/Filter, NumPy arange/linspace, Pandas Axis, Concat/Merge/Join, Apply, and Pivot Tables
Python Crawling & Data Mining
Python Crawling & Data Mining
Apr 13, 2022 · Fundamentals

Transform 1D Arrays to 2D with pandas: pivot_table vs unstack

This tutorial demonstrates how to reshape a one‑dimensional pandas DataFrame into a two‑dimensional format using both pivot_table with a custom aggregation function and the unstack method, providing step‑by‑step code, visual results, and practical tips for handling larger datasets.

data transformationpandaspivot table
0 likes · 5 min read
Transform 1D Arrays to 2D with pandas: pivot_table vs unstack
Python Crawling & Data Mining
Python Crawling & Data Mining
May 7, 2021 · Fundamentals

Automate Excel Reporting with Python: A Step‑by‑Step Guide

This article walks you through automating daily loan reporting for a bank using Python and pandas, covering data loading, date filtering, table splitting, column renaming, concatenation, missing‑value handling, calculated fields, and pivot‑table generation to replace repetitive Excel tasks.

Excel AutomationPythonbank loans
0 likes · 13 min read
Automate Excel Reporting with Python: A Step‑by‑Step Guide