Posts

Simple Data Visualization - Python

Image
 Sample Pix Python Code import numpy as np import matplotlib.pyplot as plt x = np.arange(1,6,1) y = np.linspace(1,5,5) z = np.logspace(1,2,5) plt.plot(x,y,"-or") plt.plot(x,z,"-*g") plt.xlabel("Natural Number") plt.ylabel("Linear & Log Space") plt.legend(["Linear Space", "Log Space"]) plt.show()

Analysing Multiple Choice Objective Question

Image
This video explains how we can use a multiple choice objective question to conduct a research. www.hamplustech.com #reactdev #hamplushub #hamplustech

t Test SPSS/Excel [Pt 1]

Image
This is a short and introductory video on using t-test to analyze research data. t-Test is for the comparison of two means. www.hamplustech.com