Revisions of python-altair
Todd R (TheBlackCat)
accepted
request 768856
from
Todd R (TheBlackCat)
(revision 15)
- Update to 4.0.1 * Support for interactive legends * Responsive chart width and height * Bins responsive to selections * New pivot transform * New Regression transform * New LOESS transform * New density transform * Image mark * New default html renderer, directly compatible with Jupyter Notebook and JupyterLab without the need for frontend extensions, as well as tools like nbviewer and nbconvert, and related notebook environments such as Zeppelin, Colab, Kaggle Kernels, and DataBricks. * Support per-corner radius for bar marks * Sort-by-field can now use the encoding name directly * The rangeStep argument to :class:Scale and :meth:Chart.configure_scale is deprecated. instead, use chart.properties(width={"step": rangeStep}) or chart.configure_view(step=rangeStep). * align, center, spacing, and columns are no longer valid chart properties, but are moved to the encoding classes to which they refer.
buildservice-autocommit
accepted
request 752805
from
Tomáš Chvátal (scarabeus_iv)
(revision 14)
baserev update by copy to link target
Tomáš Chvátal (scarabeus_iv)
accepted
request 752754
from
Arun Persaud (apersaud)
(revision 13)
update to latest version
buildservice-autocommit
accepted
request 724146
from
Todd R (TheBlackCat)
(revision 12)
baserev update by copy to link target
Todd R (TheBlackCat)
accepted
request 724145
from
Todd R (TheBlackCat)
(revision 11)
Update to version 3.2.0
buildservice-autocommit
accepted
request 717975
from
Todd R (TheBlackCat)
(revision 10)
baserev update by copy to link target
Todd R (TheBlackCat)
accepted
request 717974
from
Todd R (TheBlackCat)
(revision 9)
- Update to Version 3.1.0 Update includes full compatibility with version 3.3 of Vega-Lite. + Enhancements * Added support for vega themes via ``alt.themes.enable(theme_name)`` * Added an ``alt.renderers.disable_max_rows()`` method for disabling the maximum rows check * Improved user-facing warnings/errors around layering and faceting . * ``data`` argument is now properly handled by ``Chart.properties`` * Compound charts (layer, concat, hconcat, vconcat) now move data to the top level by default. In particular, this means that the ``facet()`` method can now be called directly on a layered chart without having to change how data is specified. * ``alt.LayerChart`` now supports ``mark_*()`` methods. If a layer specifies a mark at the top level, all child charts will inherit it (unless they override it explicitly). * ``alt.Chart.facet()`` now handles wrapped facets; for example: chart.facet('column_name', columns=5) + Bug fixes * Make ``chart.serve()`` and ``chart.save()`` respect the data transformer setting * Fixed a deserialization bug for certain chart specs in schemapi + Backward-Incompatible Changes * ``alt.Chart.facet()`` now accepts a wrapped facet encoding as a first positional argument, rather than a row encoding. The following are examples of old invocations, and the equivalent new invocations: > ``chart.facet(row='col1', column='col2')``: unchanged > ``chart.facet('col1', 'col2')``: change to ``chart.facet(row='col1', column='col2')`` > ``chart.facet('col1')``: change to ``chart.facet(row='col1')`` In each case, the new invocations are compatible back to Altair 2.X. * Several of the encoding channels added in 3.0 have had their capitalization corrected to better match the names used in the schema: > ``alt.Fillopacity`` -> ``alt.FillOpacity`` > ``alt.Strokeopacity`` -> ``alt.StrokeOpacity`` > ``alt.Strokewidth`` -> ``alt.StrokeWidth`` > ``alt.Xerror`` -> ``alt.XError`` > ``alt.Xerror2`` -> ``alt.XError2`` > ``alt.Yerror`` -> ``alt.YError`` > ``alt.Yerror2`` -> ``alt.YError2`` - Update to Version 3.0.1 * Fix version info bug for HTML output and Colab & Kaggle renderers.
buildservice-autocommit
accepted
request 699463
from
Todd R (TheBlackCat)
(revision 8)
baserev update by copy to link target
Todd R (TheBlackCat)
accepted
request 699462
from
Todd R (TheBlackCat)
(revision 7)
- Uodate to 3.0.0 * new compound marks: mark_boxplot(), mark_errorband(), mark_errorbar() * new transforms: transform_impute(), transform_joinaggregate(), transform_flatten() transform_fold(), transform_sample(), transform_stack() * new facet encoding that is similar to the row and column encoding, but allows for wrapped facets * new alt.concat() function that is similar to alt.hconcat and alt.vconcat, but allows for more general wrapped concatenation * new columns keyword that allows wrapped faceting, repeating, and concatenation. * many, many bug fixes * tooltips can now be automatically populated using the tooltip mark configuration. * ability to specify initial condisions for selections
buildservice-autocommit
accepted
request 693314
from
Matej Cepl (mcepl)
(revision 6)
baserev update by copy to link target
Matej Cepl (mcepl)
accepted
request 693313
from
Matej Cepl (mcepl)
(revision 5)
- Update to 2.4.1: - Several documentation cleanups & new examples - Fix incompatibility with pandas version 0.24 (#1315)
buildservice-autocommit
accepted
request 662883
from
Todd R (TheBlackCat)
(revision 4)
baserev update by copy to link target
Todd R (TheBlackCat)
accepted
request 662882
from
Todd R (TheBlackCat)
(revision 3)
- Update to version 2.3.0 * Includes many reworked examples in the example gallery. + Enhancements * Better errors for non-string column names, as well as automatic conversion of ``pandas.RangeIndex`` columns to strings (#1107) * Renderers now have set_embed_options() method (#1203) * Added kaggle renderer & more HTML output options (#1123) + Maintenance * fix typing requirement in Python 3.6+ (#1185) * Added support & CI testing for Python 3.7 (#1008) + Bug fixes * Selection predicates now recognize all valid entries (#1143) * Python 2 support for `chart.save()` (#1134) - Update to version 2.2.2 + Bug Fixes * fix missing JSON resource in ``altair.vega.v4`` (#1097) - Update to version 2.1.0 + Bug Fixes * appropriate handling of InlineData in dataset consolidation (#1092) * fix admonition formatting in documentation page (#1094) - Update to version 2.2.0 + Enhancements * better handling of datetimes and timezones (#1053) * all inline datasets are now converted to named datasets and stored at the top level of the chart. This behavior can be disabled by setting ``alt.data_transformers.consolidate_datasets = False`` (#951 & #1046) * more streamlined shorthand syntax for window transforms (#957) + Maintenance * update from Vega-Lite 2.4.3 to Vega-Lite 2.6.0; see vega-lite change-logs [2.5.0](https://github.com/vega/vega-lite/releases/tag/v2.5.0) [2.5.1](https://github.com/vega/vega-lite/releases/tag/v2.5.1) [2.5.2](https://github.com/vega/vega-lite/releases/tag/v2.5.2) [2.6.0](https://github.com/vega/vega-lite/releases/tag/v2.6.0) + Backward-incompatible changes * ``alt.SortField`` renamed to ``alt.EncodingSortField`` and ``alt.WindowSortField`` renamed to ``alt.SortField`` (#3741) + Bug Fixes * Fixed serialization of logical operands on selections within ``transform_filter()``: (#1075) * Fixed sphinx issue which embedded chart specs twice (#1088) * Avoid Selenium import until it is actually needed (#982) - Update to version 2.1.0 + Enhancements * add a ``scale_factor`` argument to ``chart.save()`` to allow the size/resolution of saved figures to be adjusted. (#918) * add an ``add_selection()`` method to add selections to charts (#832) * add ``chart.serve()`` and ``chart.display()`` methods for more flexibility in displaying charts (#831) * allow multiple fields to be passed to encodings such as ``tooltip`` and ``detail`` (#830) * make ``timeUnit`` specifications more succinct, by parsing them in a manner similar to aggregates (#866) * make ``to_json()`` and ``to_csv()`` have deterministic filenames, so in json mode a single datasets will lead to a single on-disk serialization (#862) + Breaking Changes * make ``data`` the first argument for all compound chart types to match the semantics of ``alt.Chart`` (this includes ``alt.FacetChart``, ``alt.LayerChart``, ``alt.RepeatChart``, ``alt.VConcatChart``, and ``alt.HConcatChart``) (#895). * update vega-lite to version 2.4.3 (#836) * Only API change is internal: ``alt.MarkProperties`` is now ``alt.MarkConfig`` + Maintenance * update vega to v3.3 & vega-embed to v3.11 in html output & colab renderer (#838) - Remove no longer relevant python-altair-pandas.patch
Todd R (TheBlackCat)
committed
(revision 2)
converted link to branch
Todd R (TheBlackCat)
committed
(revision 1)
Displaying revisions 21 - 35 of 35