-
Notifications
You must be signed in to change notification settings - Fork 622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move expressions to types and correct links #3288
Conversation
Please merge #3275 first to avoid conflict. |
site/docs/transform/filter.md
Outdated
@@ -27,7 +27,7 @@ Vega-Lite filter transforms must have the `filter` property. | |||
{:#expression} | |||
## Filter Expression | |||
|
|||
For a [Vega Expression](https://vega.github.io/vega/docs/expressions/) string, each datum object can be referred using bound variable `datum`. For example, setting `filter` to `"datum.b2 > 60"` would make the output data includes only items that have values in the field `b2` over 60. | |||
For an [Expression](types.html#expression) string, each datum object can be referred using bound variable `datum`. For example, setting `filter` to `"datum.b2 > 60"` would make the output data includes only items that have values in the field `b2` over 60. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In calculate, you still use "Vega Expression". We should be consistent :)
site/docs/transform/calculate.md
Outdated
@@ -5,7 +5,7 @@ title: Calculate Transform | |||
permalink: /docs/calculate.html | |||
--- | |||
|
|||
The formula transform extends data objects with new fields (columns) according to a calculation formula. | |||
The formula transform extends data objects with new fields (columns) according to a an [expression](types.html#expression). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a an
site/docs/types.md
Outdated
- [Object](#object) | ||
- [String](#string) | ||
- [URL](#url) | ||
- [DateTime](#datetime) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we order things by alphabetical order?
{: .column-list } | ||
|
||
## Literal Values | ||
|
||
<a name="*"></a><a name="Any" href="#Any">#</a> | ||
<a name="*"></a><a name="any" href="#any">#</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please search and make sure we don't refer to these anchor names with Titlecase from other pages.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I searched for types.html
.
37d8355
to
41b46cf
Compare
Revised |
Just merged #3275 -- there are a few minor conflicts. |
Rebased |
41b46cf
to
acfead8
Compare
No description provided.