├── .gitignore ├── README.md └── customer-churn-prediction ├── 01-Load-Data-with-Snowpark.ipynb ├── 02-Data-Analysis.ipynb ├── 03-Snowpark-UDF-Deployment.ipynb ├── Getting_started_with_Snowpark_Python.pdf ├── ReadMe.md ├── arch.jpg ├── config.py ├── include └── snowflake_snowpark_python-0.7.0-py3-none-any.whl ├── jupyter_env.yml └── raw_telco_data.parquet /.gitignore: -------------------------------------------------------------------------------- 1 | */.ipynb_checkpoints/* 2 | *pycache* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/README.md -------------------------------------------------------------------------------- /customer-churn-prediction/01-Load-Data-with-Snowpark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/customer-churn-prediction/01-Load-Data-with-Snowpark.ipynb -------------------------------------------------------------------------------- /customer-churn-prediction/02-Data-Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/customer-churn-prediction/02-Data-Analysis.ipynb -------------------------------------------------------------------------------- /customer-churn-prediction/03-Snowpark-UDF-Deployment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/customer-churn-prediction/03-Snowpark-UDF-Deployment.ipynb -------------------------------------------------------------------------------- /customer-churn-prediction/Getting_started_with_Snowpark_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/customer-churn-prediction/Getting_started_with_Snowpark_Python.pdf -------------------------------------------------------------------------------- /customer-churn-prediction/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/customer-churn-prediction/ReadMe.md -------------------------------------------------------------------------------- /customer-churn-prediction/arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/customer-churn-prediction/arch.jpg -------------------------------------------------------------------------------- /customer-churn-prediction/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/customer-churn-prediction/config.py -------------------------------------------------------------------------------- /customer-churn-prediction/include/snowflake_snowpark_python-0.7.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/customer-churn-prediction/include/snowflake_snowpark_python-0.7.0-py3-none-any.whl -------------------------------------------------------------------------------- /customer-churn-prediction/jupyter_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/customer-churn-prediction/jupyter_env.yml -------------------------------------------------------------------------------- /customer-churn-prediction/raw_telco_data.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-snowpark-python/HEAD/customer-churn-prediction/raw_telco_data.parquet --------------------------------------------------------------------------------