-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a5f485
commit a25396e
Showing
13 changed files
with
1,603 additions
and
2,573 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,97 +1,25 @@ | ||
from hailtop import is_notebook | ||
from typeguard import install_import_hook | ||
|
||
if is_notebook(): | ||
from plotly.io import renderers | ||
|
||
renderers.default = 'iframe' | ||
|
||
from .coord_cartesian import coord_cartesian | ||
from .ggplot import ggplot, GGPlot # noqa F401 | ||
from .aes import aes, Aesthetic # noqa F401 | ||
from .geoms import ( | ||
FigureAttribute, # noqa F401 | ||
geom_line, | ||
from .ggplot import ( | ||
aes, | ||
extend, | ||
geom_point, | ||
geom_text, | ||
geom_bar, | ||
geom_line, | ||
geom_histogram, | ||
geom_density, | ||
geom_func, | ||
geom_hline, | ||
geom_vline, | ||
geom_tile, | ||
geom_col, | ||
geom_area, | ||
geom_ribbon, | ||
) | ||
from .labels import ggtitle, xlab, ylab, labs | ||
from .scale import ( | ||
scale_x_continuous, | ||
scale_y_continuous, | ||
scale_x_discrete, | ||
scale_y_discrete, | ||
scale_x_genomic, | ||
scale_x_log10, | ||
scale_y_log10, | ||
scale_x_reverse, | ||
scale_y_reverse, | ||
scale_color_discrete, | ||
scale_color_hue, | ||
scale_color_identity, | ||
scale_color_manual, | ||
scale_color_continuous, | ||
scale_fill_discrete, | ||
scale_fill_hue, | ||
scale_fill_identity, | ||
scale_fill_continuous, | ||
scale_fill_manual, | ||
scale_shape_manual, | ||
scale_shape_auto, | ||
ggplot, | ||
undo, | ||
show, | ||
) | ||
from .facets import vars, facet_wrap | ||
|
||
install_import_hook("hail.ggplot") | ||
|
||
__all__ = [ | ||
"aes", | ||
"ggplot", | ||
"geom_point", | ||
"geom_line", | ||
"geom_text", | ||
"geom_bar", | ||
"geom_col", | ||
"geom_histogram", | ||
"geom_density", | ||
"geom_hline", | ||
"geom_func", | ||
"geom_vline", | ||
"geom_tile", | ||
"geom_area", | ||
"geom_ribbon", | ||
"ggtitle", | ||
"xlab", | ||
"ylab", | ||
"labs", | ||
"coord_cartesian", | ||
"scale_x_continuous", | ||
"scale_y_continuous", | ||
"scale_x_discrete", | ||
"scale_y_discrete", | ||
"scale_x_genomic", | ||
"scale_x_log10", | ||
"scale_y_log10", | ||
"scale_x_reverse", | ||
"scale_y_reverse", | ||
"scale_color_continuous", | ||
"scale_color_identity", | ||
"scale_color_discrete", | ||
"scale_color_hue", | ||
"scale_color_manual", | ||
"scale_fill_continuous", | ||
"scale_fill_identity", | ||
"scale_fill_discrete", | ||
"scale_fill_hue", | ||
"scale_fill_manual", | ||
"scale_shape_manual", | ||
"scale_shape_auto", | ||
"facet_wrap", | ||
"vars", | ||
aes, | ||
extend, | ||
geom_point, | ||
geom_line, | ||
geom_histogram, | ||
ggplot, | ||
undo, | ||
show, | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.