├── .devcontainer └── devcontainer.json ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .jupyter └── jupyter_notebook_config.py ├── .readthedocs.yaml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── _config.yml ├── _toc.yml ├── data ├── confirmed.csv ├── death.csv ├── stock_sentiment_data.csv └── titanic-preprocessed │ └── titanic.parquet ├── docs ├── Makefile ├── _static │ ├── fugue_logo_trimmed.svg │ ├── logo_blue.svg │ └── logo_doc.svg ├── _templates │ ├── package.rst_t │ └── toc.rst_t └── make.bat ├── experiments └── Polars_vs_Koalas.ipynb ├── images ├── architecture.svg ├── autoarima.png ├── checkpoint.svg ├── databricks_koalas_iloc.png ├── extensions.svg ├── fugue_backends.png ├── fugue_spark_benchmark_cdf.png ├── fugue_spark_benchmark_plus_one.png ├── fugue_spark_benchmark_subtract_mean_1.png ├── fugue_spark_benchmark_subtract_mean_2.png ├── fugue_sql │ └── ipyvizzu.png ├── fugue_vs_spark.png ├── logo_blue.svg ├── nodes.png ├── nodes.svg ├── p_by_color_fugue.svg ├── p_by_color_presort.svg ├── p_by_color_spark.svg ├── p_even_by_color.svg ├── p_even_num_4.svg ├── p_even_num_4_by_color.svg ├── p_num_4.svg ├── p_orig.svg ├── p_rand_by_color.svg ├── p_rand_num_4.svg ├── pandas_like_1.png ├── pandas_like_2.png ├── pandas_like_3.png ├── prefect_fugue_block.png ├── transformers.svg ├── type_hint_functionality.svg └── warehouses │ └── create_bigquery_dataset.png ├── index.md ├── requirements.txt ├── spark-defaults.conf └── tutorials ├── advanced ├── checkpoint.ipynb ├── execution_engine.ipynb ├── index.md ├── partition.ipynb ├── rpc.ipynb ├── schema_dataframes.ipynb ├── useful_config.ipynb ├── validation.ipynb └── x-like.ipynb ├── applications ├── debugging │ ├── index.md │ └── unknown_opcode.ipynb ├── examples │ ├── example_covid19.ipynb │ ├── index.md │ └── stock_sentiment.ipynb ├── recipes │ ├── index.md │ ├── loading_databases.ipynb │ ├── loading_text_files.ipynb │ └── pivot.ipynb └── use_cases │ ├── databricks_connect.ipynb │ ├── image_classification.ipynb │ ├── index.md │ ├── model_sweeping.ipynb │ ├── nlp.ipynb │ └── unit_testing.ipynb ├── beginner ├── beginner_sql.ipynb ├── distributed_compute.ipynb ├── engine_context.ipynb ├── execution_engine.ipynb ├── index.md ├── io.ipynb ├── joins.ipynb ├── partitioning.ipynb ├── schema.ipynb ├── transform.ipynb ├── transformations.ipynb └── type_hinting.ipynb ├── extensions ├── cotransformer.ipynb ├── creator.ipynb ├── index.md ├── interfaceless.ipynb ├── outputcotransformer.ipynb ├── outputter.ipynb ├── outputtransformer.ipynb ├── processor.ipynb └── transformer.ipynb ├── fugue_sql ├── builtin.ipynb ├── extensions.ipynb ├── index.md ├── operators.ipynb ├── python.ipynb └── syntax.ipynb ├── integrations ├── backends │ ├── dask_sql.ipynb │ ├── duckdb.ipynb │ ├── ibis.ipynb │ ├── index.md │ └── polars.ipynb ├── cloudproviders │ ├── anyscale.ipynb │ ├── coiled.ipynb │ ├── databricks.ipynb │ ├── images │ │ ├── anyscale_address.png │ │ ├── anyscale_auth.png │ │ ├── anyscale_env.png │ │ └── anyscale_jupyter.png │ └── index.md ├── ecosystem │ ├── datacompy.ipynb │ ├── index.md │ ├── nixtla.ipynb │ ├── pandera.ipynb │ ├── prefect.ipynb │ ├── pycaret.ipynb │ └── whylogs.ipynb └── warehouses │ ├── bigquery.ipynb │ ├── index.md │ └── trino.ipynb ├── quick_look ├── index.md ├── ten_minutes.ipynb └── ten_minutes_sql.ipynb ├── resources ├── appendix │ ├── generate_types.ipynb │ └── index.md ├── best_practices │ ├── explicit_schema.ipynb │ ├── file_formats.ipynb │ ├── fugue_not_pandas.ipynb │ ├── fugue_spark_benchmark.ipynb │ ├── fugue_spark_benchmark_notebook.html │ └── index.md ├── content.md ├── major_changes.md └── security.md └── tune ├── SciPyDemo_3_GreyKite.ipynb ├── index.md ├── iterative.ipynb ├── non_iterative.ipynb └── search_space.ipynb /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /.jupyter/jupyter_notebook_config.py: -------------------------------------------------------------------------------- 1 | c = get_config() 2 | 3 | c.NotebookApp.token='' -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/_config.yml -------------------------------------------------------------------------------- /_toc.yml: -------------------------------------------------------------------------------- 1 | root: index -------------------------------------------------------------------------------- /data/confirmed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/data/confirmed.csv -------------------------------------------------------------------------------- /data/death.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/data/death.csv -------------------------------------------------------------------------------- /data/stock_sentiment_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/data/stock_sentiment_data.csv -------------------------------------------------------------------------------- /data/titanic-preprocessed/titanic.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/data/titanic-preprocessed/titanic.parquet -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/fugue_logo_trimmed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/docs/_static/fugue_logo_trimmed.svg -------------------------------------------------------------------------------- /docs/_static/logo_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/docs/_static/logo_blue.svg -------------------------------------------------------------------------------- /docs/_static/logo_doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/docs/_static/logo_doc.svg -------------------------------------------------------------------------------- /docs/_templates/package.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/docs/_templates/package.rst_t -------------------------------------------------------------------------------- /docs/_templates/toc.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/docs/_templates/toc.rst_t -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/docs/make.bat -------------------------------------------------------------------------------- /experiments/Polars_vs_Koalas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/experiments/Polars_vs_Koalas.ipynb -------------------------------------------------------------------------------- /images/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/architecture.svg -------------------------------------------------------------------------------- /images/autoarima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/autoarima.png -------------------------------------------------------------------------------- /images/checkpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/checkpoint.svg -------------------------------------------------------------------------------- /images/databricks_koalas_iloc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/databricks_koalas_iloc.png -------------------------------------------------------------------------------- /images/extensions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/extensions.svg -------------------------------------------------------------------------------- /images/fugue_backends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/fugue_backends.png -------------------------------------------------------------------------------- /images/fugue_spark_benchmark_cdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/fugue_spark_benchmark_cdf.png -------------------------------------------------------------------------------- /images/fugue_spark_benchmark_plus_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/fugue_spark_benchmark_plus_one.png -------------------------------------------------------------------------------- /images/fugue_spark_benchmark_subtract_mean_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/fugue_spark_benchmark_subtract_mean_1.png -------------------------------------------------------------------------------- /images/fugue_spark_benchmark_subtract_mean_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/fugue_spark_benchmark_subtract_mean_2.png -------------------------------------------------------------------------------- /images/fugue_sql/ipyvizzu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/fugue_sql/ipyvizzu.png -------------------------------------------------------------------------------- /images/fugue_vs_spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/fugue_vs_spark.png -------------------------------------------------------------------------------- /images/logo_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/logo_blue.svg -------------------------------------------------------------------------------- /images/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/nodes.png -------------------------------------------------------------------------------- /images/nodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/nodes.svg -------------------------------------------------------------------------------- /images/p_by_color_fugue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/p_by_color_fugue.svg -------------------------------------------------------------------------------- /images/p_by_color_presort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/p_by_color_presort.svg -------------------------------------------------------------------------------- /images/p_by_color_spark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/p_by_color_spark.svg -------------------------------------------------------------------------------- /images/p_even_by_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/p_even_by_color.svg -------------------------------------------------------------------------------- /images/p_even_num_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/p_even_num_4.svg -------------------------------------------------------------------------------- /images/p_even_num_4_by_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/p_even_num_4_by_color.svg -------------------------------------------------------------------------------- /images/p_num_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/p_num_4.svg -------------------------------------------------------------------------------- /images/p_orig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/p_orig.svg -------------------------------------------------------------------------------- /images/p_rand_by_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/p_rand_by_color.svg -------------------------------------------------------------------------------- /images/p_rand_num_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/p_rand_num_4.svg -------------------------------------------------------------------------------- /images/pandas_like_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/pandas_like_1.png -------------------------------------------------------------------------------- /images/pandas_like_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/pandas_like_2.png -------------------------------------------------------------------------------- /images/pandas_like_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/pandas_like_3.png -------------------------------------------------------------------------------- /images/prefect_fugue_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/prefect_fugue_block.png -------------------------------------------------------------------------------- /images/transformers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/transformers.svg -------------------------------------------------------------------------------- /images/type_hint_functionality.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/type_hint_functionality.svg -------------------------------------------------------------------------------- /images/warehouses/create_bigquery_dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/images/warehouses/create_bigquery_dataset.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/index.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/requirements.txt -------------------------------------------------------------------------------- /spark-defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/spark-defaults.conf -------------------------------------------------------------------------------- /tutorials/advanced/checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/advanced/checkpoint.ipynb -------------------------------------------------------------------------------- /tutorials/advanced/execution_engine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/advanced/execution_engine.ipynb -------------------------------------------------------------------------------- /tutorials/advanced/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/advanced/index.md -------------------------------------------------------------------------------- /tutorials/advanced/partition.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/advanced/partition.ipynb -------------------------------------------------------------------------------- /tutorials/advanced/rpc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/advanced/rpc.ipynb -------------------------------------------------------------------------------- /tutorials/advanced/schema_dataframes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/advanced/schema_dataframes.ipynb -------------------------------------------------------------------------------- /tutorials/advanced/useful_config.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/advanced/useful_config.ipynb -------------------------------------------------------------------------------- /tutorials/advanced/validation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/advanced/validation.ipynb -------------------------------------------------------------------------------- /tutorials/advanced/x-like.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/advanced/x-like.ipynb -------------------------------------------------------------------------------- /tutorials/applications/debugging/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/debugging/index.md -------------------------------------------------------------------------------- /tutorials/applications/debugging/unknown_opcode.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/debugging/unknown_opcode.ipynb -------------------------------------------------------------------------------- /tutorials/applications/examples/example_covid19.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/examples/example_covid19.ipynb -------------------------------------------------------------------------------- /tutorials/applications/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/examples/index.md -------------------------------------------------------------------------------- /tutorials/applications/examples/stock_sentiment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/examples/stock_sentiment.ipynb -------------------------------------------------------------------------------- /tutorials/applications/recipes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/recipes/index.md -------------------------------------------------------------------------------- /tutorials/applications/recipes/loading_databases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/recipes/loading_databases.ipynb -------------------------------------------------------------------------------- /tutorials/applications/recipes/loading_text_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/recipes/loading_text_files.ipynb -------------------------------------------------------------------------------- /tutorials/applications/recipes/pivot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/recipes/pivot.ipynb -------------------------------------------------------------------------------- /tutorials/applications/use_cases/databricks_connect.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/use_cases/databricks_connect.ipynb -------------------------------------------------------------------------------- /tutorials/applications/use_cases/image_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/use_cases/image_classification.ipynb -------------------------------------------------------------------------------- /tutorials/applications/use_cases/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/use_cases/index.md -------------------------------------------------------------------------------- /tutorials/applications/use_cases/model_sweeping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/use_cases/model_sweeping.ipynb -------------------------------------------------------------------------------- /tutorials/applications/use_cases/nlp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/use_cases/nlp.ipynb -------------------------------------------------------------------------------- /tutorials/applications/use_cases/unit_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/applications/use_cases/unit_testing.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/beginner_sql.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/beginner_sql.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/distributed_compute.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/distributed_compute.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/engine_context.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/engine_context.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/execution_engine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/execution_engine.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/index.md -------------------------------------------------------------------------------- /tutorials/beginner/io.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/io.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/joins.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/joins.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/partitioning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/partitioning.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/schema.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/transform.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/transform.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/transformations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/transformations.ipynb -------------------------------------------------------------------------------- /tutorials/beginner/type_hinting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/beginner/type_hinting.ipynb -------------------------------------------------------------------------------- /tutorials/extensions/cotransformer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/extensions/cotransformer.ipynb -------------------------------------------------------------------------------- /tutorials/extensions/creator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/extensions/creator.ipynb -------------------------------------------------------------------------------- /tutorials/extensions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/extensions/index.md -------------------------------------------------------------------------------- /tutorials/extensions/interfaceless.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/extensions/interfaceless.ipynb -------------------------------------------------------------------------------- /tutorials/extensions/outputcotransformer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/extensions/outputcotransformer.ipynb -------------------------------------------------------------------------------- /tutorials/extensions/outputter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/extensions/outputter.ipynb -------------------------------------------------------------------------------- /tutorials/extensions/outputtransformer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/extensions/outputtransformer.ipynb -------------------------------------------------------------------------------- /tutorials/extensions/processor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/extensions/processor.ipynb -------------------------------------------------------------------------------- /tutorials/extensions/transformer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/extensions/transformer.ipynb -------------------------------------------------------------------------------- /tutorials/fugue_sql/builtin.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/fugue_sql/builtin.ipynb -------------------------------------------------------------------------------- /tutorials/fugue_sql/extensions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/fugue_sql/extensions.ipynb -------------------------------------------------------------------------------- /tutorials/fugue_sql/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/fugue_sql/index.md -------------------------------------------------------------------------------- /tutorials/fugue_sql/operators.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/fugue_sql/operators.ipynb -------------------------------------------------------------------------------- /tutorials/fugue_sql/python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/fugue_sql/python.ipynb -------------------------------------------------------------------------------- /tutorials/fugue_sql/syntax.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/fugue_sql/syntax.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/backends/dask_sql.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/backends/dask_sql.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/backends/duckdb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/backends/duckdb.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/backends/ibis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/backends/ibis.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/backends/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/backends/index.md -------------------------------------------------------------------------------- /tutorials/integrations/backends/polars.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/backends/polars.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/cloudproviders/anyscale.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/cloudproviders/anyscale.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/cloudproviders/coiled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/cloudproviders/coiled.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/cloudproviders/databricks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/cloudproviders/databricks.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/cloudproviders/images/anyscale_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/cloudproviders/images/anyscale_address.png -------------------------------------------------------------------------------- /tutorials/integrations/cloudproviders/images/anyscale_auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/cloudproviders/images/anyscale_auth.png -------------------------------------------------------------------------------- /tutorials/integrations/cloudproviders/images/anyscale_env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/cloudproviders/images/anyscale_env.png -------------------------------------------------------------------------------- /tutorials/integrations/cloudproviders/images/anyscale_jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/cloudproviders/images/anyscale_jupyter.png -------------------------------------------------------------------------------- /tutorials/integrations/cloudproviders/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/cloudproviders/index.md -------------------------------------------------------------------------------- /tutorials/integrations/ecosystem/datacompy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/ecosystem/datacompy.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/ecosystem/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/ecosystem/index.md -------------------------------------------------------------------------------- /tutorials/integrations/ecosystem/nixtla.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/ecosystem/nixtla.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/ecosystem/pandera.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/ecosystem/pandera.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/ecosystem/prefect.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/ecosystem/prefect.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/ecosystem/pycaret.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/ecosystem/pycaret.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/ecosystem/whylogs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/ecosystem/whylogs.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/warehouses/bigquery.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/warehouses/bigquery.ipynb -------------------------------------------------------------------------------- /tutorials/integrations/warehouses/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/warehouses/index.md -------------------------------------------------------------------------------- /tutorials/integrations/warehouses/trino.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/integrations/warehouses/trino.ipynb -------------------------------------------------------------------------------- /tutorials/quick_look/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/quick_look/index.md -------------------------------------------------------------------------------- /tutorials/quick_look/ten_minutes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/quick_look/ten_minutes.ipynb -------------------------------------------------------------------------------- /tutorials/quick_look/ten_minutes_sql.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/quick_look/ten_minutes_sql.ipynb -------------------------------------------------------------------------------- /tutorials/resources/appendix/generate_types.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/appendix/generate_types.ipynb -------------------------------------------------------------------------------- /tutorials/resources/appendix/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/appendix/index.md -------------------------------------------------------------------------------- /tutorials/resources/best_practices/explicit_schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/best_practices/explicit_schema.ipynb -------------------------------------------------------------------------------- /tutorials/resources/best_practices/file_formats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/best_practices/file_formats.ipynb -------------------------------------------------------------------------------- /tutorials/resources/best_practices/fugue_not_pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/best_practices/fugue_not_pandas.ipynb -------------------------------------------------------------------------------- /tutorials/resources/best_practices/fugue_spark_benchmark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/best_practices/fugue_spark_benchmark.ipynb -------------------------------------------------------------------------------- /tutorials/resources/best_practices/fugue_spark_benchmark_notebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/best_practices/fugue_spark_benchmark_notebook.html -------------------------------------------------------------------------------- /tutorials/resources/best_practices/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/best_practices/index.md -------------------------------------------------------------------------------- /tutorials/resources/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/content.md -------------------------------------------------------------------------------- /tutorials/resources/major_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/major_changes.md -------------------------------------------------------------------------------- /tutorials/resources/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/resources/security.md -------------------------------------------------------------------------------- /tutorials/tune/SciPyDemo_3_GreyKite.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/tune/SciPyDemo_3_GreyKite.ipynb -------------------------------------------------------------------------------- /tutorials/tune/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/tune/index.md -------------------------------------------------------------------------------- /tutorials/tune/iterative.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/tune/iterative.ipynb -------------------------------------------------------------------------------- /tutorials/tune/non_iterative.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/tune/non_iterative.ipynb -------------------------------------------------------------------------------- /tutorials/tune/search_space.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/tutorials/HEAD/tutorials/tune/search_space.ipynb --------------------------------------------------------------------------------