FabricDataFrames dynamically expose semantic functions based on logic defined by each function. For example, the is_holiday function shows up in the autocomplete suggestions when you're working on a FabricDataFrame containing both a datetime column and a country column.
Each semantic function uses information about the data types, metadata (such as Power BI data categories), and the data in a FabricDataFrame or FabricSeries to determine its relevance to the particular data on which you're working.
Semantic functions are automatically discovered when annotated with the @semantic_function decorator. You can think of semantic functions as being similar to C# extension methods applied to the popular DataFrame concept.
from sempy.fabric import FabricDataFrame
df = FabricDataFrame(
{"country": ["US", "AT"], "date": ["2023-01-06", "2023-01-06"]},
column_metadata={"country": {"data_category": "Country"}},
)
df["date"] = pd.to_datetime(df["date"])
holiday_series = df.is_holiday(date_col="date", country_col="country")
Release files for semantic-link-functions-holidays 0.14.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| semantic_link_functions_holidays-0.14.2-py3-none-any.whl | Python 3 | none | any | Details |
Release files / semantic_link_functions_holidays-0.14.2-py3-none-any.whl
| Download URL | semantic_link_functions_holidays-0.14.2-py3-none-any.whl |
|---|---|
| Size | 4.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
4eefdf42a5acbab14a2aab92639428d017a91e8a9a569dc77cfc81ce7de866cf
|
|
BLAKE2b-256 checksum How to use checksums |
adf53b902bf7186ec6938e07056001e954064530237976f060a6ecbd78f691c4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
RestSharp/106.13.0.0
|