All Projects → nimblelearn → datapackage-m

nimblelearn / datapackage-m

Licence: MIT license
Power Query M functions for working with Tabular Data Packages (Frictionless Data) in Power BI and Excel

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to datapackage-m

LibPQ
Detach your M code from workbooks to reuse it! Import modules from local or web storage (unlimited number of sources)
Stars: ✭ 55 (+111.54%)
Mutual labels:  excel, power-bi, power-query, powerbi
PowerBI-book-ru
Проект открытого методического пособия по Power BI, Power Query, Power Pivot
Stars: ✭ 76 (+192.31%)
Mutual labels:  power-bi, power-query, powerbi
datapackage-go
A Go library for working with Data Package.
Stars: ✭ 22 (-15.38%)
Mutual labels:  tabular-data, frictionlessdata, datapackage
PowerQueryNet
Run M Language (Power Query Formula Language) from anywhere.
Stars: ✭ 146 (+461.54%)
Mutual labels:  excel, powerbi
Active importer
Define importers that load tabular data from spreadsheets or CSV files into any ActiveRecord-like ORM.
Stars: ✭ 333 (+1180.77%)
Mutual labels:  csv-files, tabular-data
qsv
CSVs sliced, diced & analyzed.
Stars: ✭ 438 (+1584.62%)
Mutual labels:  excel, datapackage
SchemaMapper
A .NET class library that allows you to import data from different sources into a unified destination
Stars: ✭ 41 (+57.69%)
Mutual labels:  excel, tabular-data
fastapi-csv
🏗️ Create APIs from CSV files within seconds, using fastapi
Stars: ✭ 46 (+76.92%)
Mutual labels:  excel, tabular-data
Google-Data-Analytics-Professional-Certificate
Quizzes & Assignment Solutions for Google Data Analytics Professional Certificate on Coursera. Also included a few resources on side that I found helpful.
Stars: ✭ 19 (-26.92%)
Mutual labels:  excel, data-analytics
Tui.grid
🍞🔡 The Powerful Component to Display and Edit Data. Experience the Ultimate Data Transformer!
Stars: ✭ 1,859 (+7050%)
Mutual labels:  excel, tabular-data
Rows
A common, beautiful interface to tabular data, no matter the format
Stars: ✭ 739 (+2742.31%)
Mutual labels:  excel, tabular-data
Data-Science
Using Kaggle Data and Real World Data for Data Science and prediction in Python, R, Excel, Power BI, and Tableau.
Stars: ✭ 15 (-42.31%)
Mutual labels:  excel, powerbi
tableschema-go
A Go library for working with Table Schema.
Stars: ✭ 41 (+57.69%)
Mutual labels:  tabular-data, frictionlessdata
Power-Query-Excel-Formats
A collection of M code to get various formats from Excel sheets in Power Query
Stars: ✭ 43 (+65.38%)
Mutual labels:  excel, powerbi
bamboolib binder template
bamboolib - template for creating your own binder notebook
Stars: ✭ 19 (-26.92%)
Mutual labels:  data-transformation, data-visualisation
awesome-power-bi
⭐️⭐️⭐️ Awesome Power BI dashboards, visuals, development resources, learning materials and more 🔥🔥🔥
Stars: ✭ 61 (+134.62%)
Mutual labels:  power-bi, powerbi
data-analysis-using-python
Data Analysis Using Python: A Beginner’s Guide Featuring NYC Open Data
Stars: ✭ 81 (+211.54%)
Mutual labels:  open-data, data-analytics
powerbi-vcs
WIP (properly) version control and collaborate on your *.pbi{tx} files
Stars: ✭ 78 (+200%)
Mutual labels:  power-bi, powerbi
Meza
A Python toolkit for processing tabular data
Stars: ✭ 374 (+1338.46%)
Mutual labels:  excel, tabular-data
LDWizard
A generic framework for simplifying the creation of linked data.
Stars: ✭ 17 (-34.62%)
Mutual labels:  data-transformation, open-data

Data Package M (datapackage-m)

A set of functions written in Power Query M for working with Tabular Data Packages in Power BI Desktop and Power Query for Excel (also known as 'Get & Transform' in Excel 2016 and later). Data Package M functions implement several Frictionless Data specifications that help you to go from data to insight, faster.

What is Frictionless Data?

Frictionless Data

A Tabular Data Package is a simple format for publishing and sharing tabular data. Tabular Data Packages extend and specialise the Data Package specification, and both come under the umbrella of Frictionless Data.

Visit https://frictionlessdata.io to learn more.

Data Package M in Power BI

Microsoft Power BI UI: Data Package M in Action in Power BI

Microsoft Power BI UI: Invoke Function
Invoking the DataPackage.Tables function

Microsoft Power BI UI: Resource Navigation
Viewing the resources for a GDP Tabular Data Package and previewing the resource data

Microsoft Power BI UI: GDP Tabular Data Package Resource Data
Getting a table from a GDP Tabular Data Package resource after navigating from the resource list

Microsoft Power BI UI: GDP Tabular Data Package Visualisation
Creating a quick visualisation of the GDP data

Data Package M in Power Query for Excel

Microsoft Power BI UI: Data Package M in Action in Excel

Microsoft Excel UI: Invoke Function
Invoking the DataPackage.Tables function

Microsoft Excel UI: Resource Navigation
Viewing the resources for a GDP Tabular Data Package and previewing the resource data

Microsoft Excel UI: GDP Tabular Data Package Resource Data
Getting a table from a GDP Tabular Data Package resource after navigating from the resource list

Microsoft Excel UI: GDP Tabular Data Package Worksheet
The GDP table is loaded to a new Excel Worksheet and/or Data Model and ready for analysis

Data Package M Functions

Function Name Query/Shared Name* Description
DataPackage.Table DataPackageTable Returns a Tabular Data Resource as a table
DataPackage.Tables DataPackageTables Returns a table that lists the Data Resources contained within a Data Package
DataPackage.Helper DataPackageHelper Returns a Data Package helper function as a function

*This is the name that appears in the Power Query Editor in the 'Queries' pane. When invoking the functions through the Power Query Editor's 'Invoke Function' dialog, this name will appear in the auto-generated Power Query M expressions. This is also the name that will be exposed to the shared function library when the functions have been setup.

DataPackage.Table

Parameter Type Description
dataPackageIdentifier text A valid Data Package Identifier
dataResourceIndex number A valid Data Resource index
dataResourceName text A valid Data Resource name
ignoreTableSchemaTypes logical Controls whether the Table Schema is applied to the data

DataPackage.Tables

Parameter Type Description
dataPackageIdentifier text A valid Data Package Identifier
ignoreTableSchemaTypes logical Controls whether the Table Schema is applied to the data

Any Data Resource that is detected as being tabular will contain the data table in the 'data' column. Data Package properties that are inferred and added by Data Package M have their name preceded by double underscore e.g. '__fullpath'.

DataPackage.Helper

Parameter Type Description
functionName text A valid Data Package helper function name

This is a special function that acts as a library of Data Package helper functions. As the returned functions are only used as helpers for the DataPackage.Table and DataPackage.Tables functions, please see the comments inline with the Power Query M expressions to understand how they work. Advanced Power Query M users may wish to use these helper functions to work with Data Package metadata more directly.

Table Schema Type Conversions

Type conversion is attempted for the most common Table Schema types:

Table Schema Type M Type
string text
number number
integer number
boolean logical
date date
datetime datetime
time time

Unhandled types are defaulted to the text type. Setting the ignoreTableSchemaTypes property to true when invoking DataPackage.Table or DataPackage.Tables will stop the Table Schema from being applied. This can be useful when one or more values in a column cause an error when the Table Schema type conversions are attempted.

Implemented Frictionless Data Specifications

The Data Package M functions are aligned closely with the v1 Frictionless Data specifications. The below table maps the significant Data Package M features to the corresponding specification(s):

Feature Specification Notes
Data Package Identifier resolution Data Package Identifier Identifier Strings only
Remote and local resource path handling Data Resource, Tabular Data Resource Includes handling path arrays (i.e. data in multiple files)
Tabular Data Resource metadata handling Tabular Data Resource 'dialect' is partially handled. 'encoding' is handled for the most common encoding types**
Table Schema type conversions Table Schema, Tabular Data Resource Partial support. Includes resolving and applying remote schemas.
Inline data handling Tabular Data Resource
Compressed resource handling Compression Resources Pattern Gzip compression support only

**The currently handled encoding types are gb2312, x-cp20949, euc-jp, iso-8859-1, iso-8859-2, iso-8859-3, iso-8859-4, iso-8859-5, iso-8859-6, iso-8859-7, iso-8859-8, iso-8859-9, iso-8859-13, iso-8859-15, us-ascii, utf-32be, utf-32, utf-16, utf-8, utf-7, and windows-1252.

Setup

Option 1: Power BI Desktop Template

  1. Download the latest release.
  2. Open the 'datapackage-m-template.pbit' file found in the 'templates' folder with Power BI Desktop.
  3. Open the Power Query Editor window and invoke the DataPackageTable or DataPackageTables function with a valid Data Package Identifier String. Invoking the DataPackageTable function also requires a valid resource name or index.

For instructions on how to open the Power Query Editor window in Power BI Desktop click here.

Option 2: Excel Template

  1. Download the latest release.
  2. Open the 'datapackage-m-template.xltx' file found in the 'templates' folder with Excel 2010 or later. For Excel 2010 and 2013, you MUST have the Power Query for Excel add-in installed (installing the latest version is recommended). Power Query is built-in from with Excel 2016 and later, and can be found under the 'Data' tab in the 'Get & Transform Data' section.
  3. Open the Power Query Editor window and invoke the DataPackageTable or DataPackageTables function with a valid Data Package Identifier String. Invoking the DataPackageTable function also requires a valid resource name or index.

For instructions on how to open the Power Query Editor window in Excel click here.

Option 3: Create New Functions from the Power Query M Files

This scenario is mostly applicable if you have an existing Power BI or Excel file, or if you're an advanced Power Query M user.

  1. Download the latest release.
  2. For each .pq file in the 'functions' folder, create a blank query, copy and paste the Power Query M expression into the Advanced Editor, click 'Done', and give the function the same name as its .pq file but without the dot (.) or extension (e.g. for DataPackage.Table.pq the name should be 'DataPackageTable').

You're now ready to invoke the Data Package M functions through the Power Query 'Invoke Function' dialog or via Power Query M expressions as shown in the examples below.

Examples

Example Files

You can invoke the DataPackage.Table and DataPackage.Tables functions through the Power BI Desktop or Power Query for Excel user interface (UI) using the 'Invoke Function' dialog.

Download the latest release and try one of the example files found in the 'examples' folder.

Example File Description
datapackage-m-example.pbix A simple Power BI Desktop example based on a GDP Data Package
datapackage-m-example.xlsx A simple Excel Workbook example based on a GDP Data Package

Power Query M Expression Examples

The following examples show the recommended way to invoke the Data Package M functions when using them in your Power Query M expressions.

Getting the List of Resources from a Data Package (Remote)

let
    // Setup the shared function reference
    DataPackage.Tables = DataPackageTables,

    // Invoke the function
    Source = DataPackage.Tables("https://datahub.io/core/gdp/datapackage.json")
in
    Source

Getting the List of Resources from a Data Package (Local)

let
    // Setup the shared function reference
    DataPackage.Tables = DataPackageTables,

    // Invoke the function
    Source = DataPackage.Tables("C:\gdp\datapackage.json")
in
    Source

Getting the Data for a Resource Using Its Index (Remote)

let
    // Setup the shared function reference
    DataPackage.Table = DataPackageTable,

    // Invoke the function
    Source = DataPackage.Table("https://datahub.io/core/gdp/datapackage.json", 0)
in
    Source

Getting the Data for a Resource Using Its Index (Local)

let
    // Setup the shared function reference
    DataPackage.Table = DataPackageTable,

    // Invoke the function
    Source = DataPackage.Table("C:\gdp\datapackage.json", 0)
in
    Source

Getting the Data for a Resource Using Its Name (Remote)

let
    // Setup the shared function reference
    DataPackage.Table = DataPackageTable,

    // Invoke the function
    Source = DataPackage.Table("https://datahub.io/core/gdp/datapackage.json", null, "gdp")
in
    Source

Getting the Data for a Resource Using Its Name (Local)

let
    // Setup the shared function reference
    DataPackage.Table = DataPackageTable,

    // Invoke the function
    Source = DataPackage.Table("C:\gdp\datapackage.json", null, "gdp")
in
    Source

Getting the Data for a Resource Without Table Schema Type Conversion

let
    // Setup the shared function reference
    DataPackage.Table = DataPackageTable,

    // Invoke the function
    Source = DataPackage.Table("https://datahub.io/core/gdp/datapackage.json", null, "gdp", true)
in
    Source

Invoking a Data Package Helper Function Directly

let
    // Setup the shared function reference
    DataPackage.Helper = DataPackageHelper,

    // Get the required helper function by name
    DataPackage.Package = DataPackage.Helper("DataPackage.Package"),

    // Invoke the helper function
    Source = DataPackage.Package("https://datahub.io/core/gdp/datapackage.json")
 in
    Source

Try Data Package M with the Core Datasets

Licensing

This work was created by Nimble Learn and has been published with the MIT License. The full license can be viewed in plain text.

Notes

  • When prompted for the 'Privacy Level' by Power BI or Power Query for Excel, choose either 'Public' or 'Organizational'.

  • If the field values in a CSV file do not match the expected field type, as defined in the Table Schema, the invalid values in the column will return an error (Expression.Error). You can get around this by setting the ignoreTableSchemaTypes parameter to true.

Known Issues

Power BI Service Data Refresh Support

Data refresh only works from Power BI Desktop and Power Query for Excel but not from the Power BI service. The Power BI service performs a static analysis on all the Power Query M expressions in a Power BI file to determine whether it can be refreshed by the service. One scenario where a data refresh is not supported is when the Web.Contents function is used with a dynamically generated URL. This is one of the functions that Data Package M uses to dynamically handle Data Packages and this currently prevents the Power BI Service from being able to refresh the data.

If you require Power BI service data refresh support, you can try the Data Package Connector. This is a Power BI Custom Connector that's based on the same Data Package M functions and supports data refresh in the Power BI service through an On-premises data gateway.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].