Statistics: Variables – Independent and Dependent

Understanding a Variable’s Function Variables, whether quantitative or qualitative, serve a specific function depending on the type of study being performed and it is important to understand each when designing the study. Independent Variable When designing the study, note those variables which are changing during the scenario, they are considered independent (IV). For example, if…

Statistics: Sampling Methods

Identifying the Best Method to Create a Sample As discussed in Population versus Sample, sampling provides a more cost and time-effective means of mining data versus attempting to gather an entire population. Building the sample requires deciding which sampling methods best suites your statistical needs: Simple Random Sampling: This represents the best method as it…

Statistics: Variable Types

Classifying Variables as Quantitative or Qualitative Data in samples represent variables which are used to statistically analyze patterns. For example, a sample of clinic patients would contain a list of their weight values. In this case weight is the variable. Quantitative or Qualitative All variables are either quantitative or qualitative based on the type of…

MVC: Custom Validation

Please see my other MVC articles. Using Custom Validation within a View While MVC provides many robust attributes within a Model to satisfy many validation scenarios, some situations exist which require custom logic to validate a user’s input. This article will illustrate how to implement your own routines to validate user input. First, create a…

T-SQL: Ranking Functions

Please see my other Database Development articles. Ranking Functions There are several new impressive advancements in the latest version of t-sql; this article will focus on “Ranking” functions. Prior to the release of SQL Server 2005 with its t-sql enhancements, working with blocks of related data was clunky at best. T-sql authors mostly relied on…

MVC: ADO.NET Entity Data Model

Please see my other MVC articles. Leveraging Visual Studio’s ORM Tool to Create a Data Layer Any application which interacts with a data source utilizes a data layer to perform Create, Read, Update, and Delete (CRUD) operations. Usually, this is quite an arduous tasks requiring endless maintenance to reflect changes in the data source as…

MVC: Accessing Form Values

Please see my other MVC articles. Leveraging the FormCollection object to retrieve user input. Collecting user input is one of the most common deliverables in Internet applications for which MVC provides a robust mechanism called the FormCollection. Beginning where my MVC 4 ADO.NET Entity Data Model article ended, I will demonstrate how to leverage FormCollection…

MVC: Using CSS Classes with Textboxes

Please see my other MVC articles. Leveraging CSS classes to Style Html Textboxes. As with any standard-compliant, cross-browser Internet applications, it is imperative code used to impose styling remain separate from the UI markup. Therefore, MVC supports the following ability for designers to add a CSS class to input controls which may be styled in…

MVC: Displaying Data Source Records

Please see my other MVC articles. Leveraging the Data Model to Retrieve Records for Display. As illustrated in MVC 4 ADO.NET Entity Data Model, Visual Studio now provides an extremely efficient ORM tool to quickly generate the data layer for CRUD operations. In this article, I will illustrate how to query and display data from…