├── .gitattributes ├── .gitignore ├── Appendix A - A Crash Course in Python.ipynb ├── Chapter 1 - Installing Python, SAS SWAT, and CAS.ipynb ├── Chapter 10 - Advanced Topics.ipynb ├── Chapter 2 - The 10 Minute Guide to Using CAS from Python.ipynb ├── Chapter 3 - The Fundamentals of using Python with CAS.ipynb ├── Chapter 4 - Managing Your Data in CAS.ipynb ├── Chapter 5 - The CASAction and CASTable Objects.ipynb ├── Chapter 6 - Working with CAS Tables.ipynb ├── Chapter 7 - Data Exploration and Summary Statistics.ipynb ├── Chapter 8 - Modeling Continuous Variables.ipynb ├── Chapter 9 - Modeling Categorical Variables.ipynb ├── LICENSE ├── README.md ├── cover.jpg └── data ├── README.md └── organics.csv.zip /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/.gitignore -------------------------------------------------------------------------------- /Appendix A - A Crash Course in Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Appendix A - A Crash Course in Python.ipynb -------------------------------------------------------------------------------- /Chapter 1 - Installing Python, SAS SWAT, and CAS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Chapter 1 - Installing Python, SAS SWAT, and CAS.ipynb -------------------------------------------------------------------------------- /Chapter 10 - Advanced Topics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Chapter 10 - Advanced Topics.ipynb -------------------------------------------------------------------------------- /Chapter 2 - The 10 Minute Guide to Using CAS from Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Chapter 2 - The 10 Minute Guide to Using CAS from Python.ipynb -------------------------------------------------------------------------------- /Chapter 3 - The Fundamentals of using Python with CAS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Chapter 3 - The Fundamentals of using Python with CAS.ipynb -------------------------------------------------------------------------------- /Chapter 4 - Managing Your Data in CAS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Chapter 4 - Managing Your Data in CAS.ipynb -------------------------------------------------------------------------------- /Chapter 5 - The CASAction and CASTable Objects.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Chapter 5 - The CASAction and CASTable Objects.ipynb -------------------------------------------------------------------------------- /Chapter 6 - Working with CAS Tables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Chapter 6 - Working with CAS Tables.ipynb -------------------------------------------------------------------------------- /Chapter 7 - Data Exploration and Summary Statistics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Chapter 7 - Data Exploration and Summary Statistics.ipynb -------------------------------------------------------------------------------- /Chapter 8 - Modeling Continuous Variables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Chapter 8 - Modeling Continuous Variables.ipynb -------------------------------------------------------------------------------- /Chapter 9 - Modeling Categorical Variables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/Chapter 9 - Modeling Categorical Variables.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/README.md -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/cover.jpg -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/data/README.md -------------------------------------------------------------------------------- /data/organics.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sascommunities/sas-viya-the-python-perspective/HEAD/data/organics.csv.zip --------------------------------------------------------------------------------