第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用選擇菜單添加過濾,它不起作用

使用選擇菜單添加過濾,它不起作用

幕布斯7119047 2023-06-09 15:30:59
我的目的是當我單擊其中一個 city_name 時,圖表將過濾以僅顯示有關(guān)該城市的信息。params部分的代碼是我為使用Vegta-Lite 中的選擇菜單進行過濾而添加的代碼。(我正在嘗試使用的方法)然而,如下圖所示,即使我按Brisbane過濾,該圖仍然為我提供了所有信息,而不僅僅是一張折線圖。(即我的過濾器菜單不起作用。)它是有線的,選擇菜單已經(jīng)存在,但它無法鏈接到我的圖表。感覺這個選擇菜單是獨立存在的....任何人都知道我該如何解決這個問題?即如何讓我的選擇菜單鏈接到我的圖表,以便我可以按 city_name 進行過濾?{  "$schema": "https://vega.github.io/schema/vega-lite/v4.json",  "width": 800, "height": 200,  "description": "Stock prices of 5 Tech Companies over Time.",  "data": {"url": "https://raw.githubusercontent.com/BocongZhao823/My_First_Webpage-/main/data/rainfall_tidy.csv"},  "params": [    {      "name":"City_Selection",      "bind":{        "input":"select",        "options":[          null,          "Adelaide",          "Brisbane",          "Canberra",          "Melbourne",          "Perth",          "Sydney"  ],  "labels":[    "Show All",    "Adelaide",    "Brisbane",   "Canberra",    "Melbourne",   "Perth",   "Sydney"  ],  "name":"City_Selection:"}}],
查看完整描述

1 回答

?
嚕嚕噠

TA貢獻1784條經(jīng)驗 獲得超7個贊

定義選擇的方法"params"目前是實驗性的,并沒有在當前版本的 Vega-Lite 中完全實現(xiàn)。

如果您想使用輸入框來過濾數(shù)據(jù),最直接的方法是遵循Vega-Lite 文檔的輸入元素綁定部分,并使用過濾器轉(zhuǎn)換根據(jù)您創(chuàng)建的選擇來過濾數(shù)據(jù)。

這是一個示例(在 Vega 編輯器中查看):

{

? "$schema": "https://vega.github.io/schema/vega-lite/v4.json",

? "width": 800,

? "height": 200,

? "description": "Stock prices of 5 Tech Companies over Time.",

? "data": {

? ? "url": "https://raw.githubusercontent.com/BocongZhao823/My_First_Webpage-/main/data/rainfall_tidy.csv"

? },

? "selection": {

? ? "city_selector": {

? ? ? "type": "single",

? ? ? "fields": ["city_name"],

? ? ? "bind": {

? ? ? ? "input": "select",

? ? ? ? "options": [

? ? ? ? ? null,

? ? ? ? ? "Adelaide",

? ? ? ? ? "Brisbane",

? ? ? ? ? "Canberra",

? ? ? ? ? "Melbourne",

? ? ? ? ? "Perth",

? ? ? ? ? "Sydney"

? ? ? ? ],

? ? ? ? "labels": [

? ? ? ? ? "Show All",

? ? ? ? ? "Adelaide",

? ? ? ? ? "Brisbane",

? ? ? ? ? "Canberra",

? ? ? ? ? "Melbourne",

? ? ? ? ? "Perth",

? ? ? ? ? "Sydney"

? ? ? ? ],

? ? ? ? "name": "City Selection:"

? ? ? }

? ? }

? },

? "transform": [{"filter": {"selection": "city_selector"}}],

? "mark": {"type": "line", "point": {"filled": false, "fill": "white"}},

? "encoding": {

? ? "x": {"timeUnit": "year", "field": "date"},

? ? "y": {"aggregate": "mean", "field": "rainfall", "type": "quantitative"},

? ? "color": {

? ? ? "field": "city_name",

? ? ? "type": "nominal",

? ? ? "scale": {

? ? ? ? "domain": [

? ? ? ? ? "Adelaide",

? ? ? ? ? "Brisbane",

? ? ? ? ? "Canberra",

? ? ? ? ? "Melbourne",

? ? ? ? ? "Perth",

? ? ? ? ? "Sydney"

? ? ? ? ]

? ? ? }

? ? }

? }

}

http://img3.sycdn.imooc.com/6482d5750001b87209190247.jpg

查看完整回答
反對 回復 2023-06-09
  • 1 回答
  • 0 關(guān)注
  • 147 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號