Author: datapandasadmin

Various Types of Basic Charts For Data Analysis and Exploration – Visualization and Meaning
| |

Various Types of Basic Charts For Data Analysis and Exploration – Visualization and Meaning

Sometimes, you need some charts to explore your data and many times when your analysis is done and you want to report, you would most likely want to convey your message using charts and graphs. This is a quick look at some charts which are available and their names: We use this raw data in…

Generate AutoIT GUI and Assign Actions to Form Elements

This is a quick code to create a BUTTON , CHECKBOX and COMBO BOX and assign some action to them using “MessageLoop Format”. The general message loop format is While 1 $iMsg = GUIGetMsg() … … WEnd   Action is put into the WHILE LOOP using the SWITCH and CASE STATEMENT. The GUIGetMsg() function polls…

Add Action to AutoIt Message Box – Catching the Message Box Returned Value

Add Action to AutoIt Message Box – Catching the Message Box Returned Value

Adding actions to messages boxes Message Boxes, like most functions, return one of these values and their respective meanings Button Pressed Return Values: OK = $IDOK (1) CANCEL  = $IDCANCEL (2) ABORT = $IDABORT (3) RETRY  = $IDRETRY (4) IGNORE  = $IDIGNORE (5) YES =  $IDYES (6) NO =  $IDNO (7) CONTINUE **  = $IDCONTINUE (11) TRY…

|

AutoIT simple tutorial on LOOPS – IF, FOR LOOP, WHILE LOOP, DO LOOP

Autoit is a very simple yet powerful tool to automate simple scripts. Today, we are looking at LOOPS. Credit to 403forbidden403. You can check her on Youtbue ;loops ;lets declare a varible $var = 1 ;lets write an if statement if $var = 1 then MsgBox(6,”if Statement Message box”,”How does the message box look?”) endIf This…

Free Open Source Data Visualization Tools and Service
|

Free Open Source Data Visualization Tools and Service

There are a couple Free Open Source Data Visualization Tools and Services which you can make use of for your work data exploration and visualization purposes. Below ,  I list a few ones in no order of importance. Caravel:   It is a Python based data exploration and visualization software by Airbnb. It is powerful and…

Assigning a Simple Button to a VBA Code – Excel Microsoft Visual Basic
|

Assigning a Simple Button to a VBA Code – Excel Microsoft Visual Basic

This is a simple guide to create and assign a “button” to your simple VBA code. Credit to WiseOwlTutorials. You can check him on Youtube Let’s create a simple VBA code in a module A simple code like this will do for our example Sub NameIsNanaKofi() Worksheets.Add Range(“A1”).Value = “My Name is Nana Kofi”End Sub  …

The Basics – Visual Basics Macro Programming Start Up

The Basics – Visual Basics Macro Programming Start Up

This is a quick and simple VBA code with some comments about the structure and how it the basic syntax works for beginners. Credit to WiseOwlTutorials, you can check him out Youtube. Sub createAndLabelNewSheet() ‘create new worksheet // this is a comment. comment is denoted by an ‘apostrosphe sign ‘Basic VBA sentence structure ‘thing.action ‘always name…

Excel INDEX And MATCH functions Explained from Beginner to Advanced with Examples

For a refresher tutorial or quick look up on INDEX and MATCH Functions in Excel, ExcelIsFun on Youtube explains it very clearly with great examples. His explanation is clear and the examples are real-life and practical enough to let you understand the concepts pretty well. He has done a good job to also provide free practice Excel Practice workbooks which you…

Python Pandas Pivot Table Index location Percentage calculation on Two columns – XlsxWriter pt2
| |

Python Pandas Pivot Table Index location Percentage calculation on Two columns – XlsxWriter pt2

This is a just a bit of addition to a previous post, by formatting the Excel output further using the Python XlsxWriter package. The additions are : Colour formatting has been added to the Total Cost column The “Total Cost” has been given a money formatting The above uses row : column numeric values instead…