cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
jonespossibly
Helper I
Helper I

Deneb Vega-lite trend line based on aggregated mark

I've got a line chart in which i have a line that is aggregated by sum. I have a trend line based on regression which works fine for the none-aggregated data, but i would like it to show a trend line based on the points given by the aggregate.

here is my vega-lite specification - can someone help me out?:

  "data": {"name": "dataset"},
  "layer": [
    {
      "mark": {"type": "line"},
      "encoding": {
        "y": {
          "field": "Weekly Avg"
        },
        "color": {
          "field": "Loan Type",
          "scale": {
            "range": [
              "#4795CA",
              "#F9B96A",
              "#779E41",
              "#F54f0F",
              "#cfcfcf"
            ]
          }
        }
      }
    },
    {
      "mark": {"type": "line"},
      "encoding": {
        "y": {
          "field": "Weekly Avg",
          "aggregate": "sum"
        },
        "color": {"datum": "Total"}
      }
    },
    {
      "mark": {
        "type": "line",
        "strokeDash": [5, 5]
      },
      "transform": [
        {
          "regression": "Weekly Avg",
          "on": "W / C",
          "groupBy": "W / C"
        
        }
      ],
      "encoding": {
        "y": {
          "field": "Weekly Avg"
        },
        "color": {"datum": "Trend"}
      }
    }
  ],
  "encoding": {
    "x": {
      "field": "W / C",
      "timeUnit": "monthdateyear",
      "type": "ordinal",
      "axis": {"format": "%d/%m/%Y"}
    },
    "y": {
      "type": "quantitative",
      "axis": {"format": "~s"}
    }
  }
}

 #deneb #vega-lite

2 REPLIES 2
mahoneypat
Microsoft
Microsoft

This would be easier to help do with data. Please see this video on how to add your data into the json (or you can just provide link to your sample data).

(2) Getting Help With the Deneb Visual in Power BI - YouTube

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


ok, so I've set up test data and specification below - how do i base the trend line on the total?

{
  "data": {"values":[
 {
   "Weekly Avg": "2",
   "Type": "a",
   "WC": "2022-01-01 00:00:00"
 },
 {
   "Weekly Avg": "4",
   "Type": "b",
   "WC": "2022-01-01 00:00:00"
 },
 {
   "Weekly Avg": "23",
   "Type": "c",
   "WC": "2022-01-01 00:00:00"
 },
 {
   "Weekly Avg": "28",
   "Type": "a",
   "WC": "2022-01-08 00:00:00"
 },
 {
   "Weekly Avg": "22",
   "Type": "b",
   "WC": "2022-01-08 00:00:00"
 },
 {
   "Weekly Avg": "25",
   "Type": "c",
   "WC": "2022-01-08 00:00:00"
 },
 {
   "Weekly Avg": "42",
   "Type": "a",
   "WC": "2022-01-15 00:00:00"
 },
 {
   "Weekly Avg": "21",
   "Type": "b",
   "WC": "2022-01-15 00:00:00"
 },
 {
   "Weekly Avg": "17",
   "Type": "c",
   "WC": "2022-01-15 00:00:00"
 },
 {
   "Weekly Avg": "42",
   "Type": "a",
   "WC": "2022-01-22 00:00:00"
 },
 {
   "Weekly Avg": "11",
   "Type": "b",
   "WC": "2022-01-22 00:00:00"
 },
 {
   "Weekly Avg": "27",
   "Type": "c",
   "WC": "2022-01-22 00:00:00"
 },
 {
   "Weekly Avg": "22",
   "Type": "a",
   "WC": "2022-01-29 00:00:00"
 },
 {
   "Weekly Avg": "11",
   "Type": "b",
   "WC": "2022-01-29 00:00:00"
 },
 {
   "Weekly Avg": "13",
   "Type": "c",
   "WC": "2022-01-29 00:00:00"
 }
]},
  "layer": [
    {
      "mark": {"type": "line"},
      "encoding": {
        "y": {"field": "Weekly Avg"},
        "color": {
          "field": "Type",
          "scale": {
            "range": [
              "#4795CA",
              "#F9B96A",
              "#779E41",
              "#F54f0F",
              "#cfcfcf"
            ]
          }
        }
      }
    },
    {
      "mark": {"type": "line"},
      "encoding": {
        "y": {
          "field": "Weekly Avg",
          "aggregate": "sum"
        },
        "color": {"datum": "Total"}
      }
    },
    {
      "mark": {
        "type": "line",
        "strokeDash": [5, 5]
      },
      "transform": [
        {
          "regression": "Weekly Avg",
          "on": "WC",
          "groupBy": "WC"
        }
      ],
      "encoding": {
        "y": {
          "field": "Weekly Avg"
        },
        "color": {"datum": "Trend"}
      }
    }
  ],
  "encoding": {
    "x": {
      "field": "WC",
      "timeUnit": "monthdateyear",
      "type": "ordinal",
      "axis": {"format": "%d/%m/%Y"}
    },
    "y": {
      "type": "quantitative",
      "axis": {"format": "~s"}
    }
  }
}

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.