Python: List Vs Tuple

In Python Programming, especially while data manipulation, Lists and Tuples are the often used data structures. To declare a List [] square brackets are used while Tuples are defined inside round braces (). The Objects inside a List & Tuple can be of different data types, like, numerical and strings. Both are ordered data structures,… Continue reading Python: List Vs Tuple

Published
Categorized as Python

Microsoft Learning: Machine Learning with Python

This course on Microsoft Learn is known as Introduction to machine learning with Python and Azure Notebooks and can be accessed by clicking the link: https://docs.microsoft.com/en-us/learn/paths/intro-to-ml-with-python/ It has 3 modules: Analyze climate data with Azure Notebooks, Predict flight delays by creating a machine learning model in Python and Analyze the sentiment of reviews with Keras

SAS ‘DO’ Loops

The DO Statement in SAS for looping or iteration is used along with while and until special cases. Also, you need to tell SAS whether you need the output of each iteration, for that you need to include the output; statement. You always need to finish it by keyword end; Variables on which DO is… Continue reading SAS ‘DO’ Loops

Published
Categorized as SAS