Visualizing DataVisualizing data is the most intuitive way to interpret it, so it’s an invaluable skill. It is much […] April 13, 2024 in Statistics tagged data / visualization / variable / chart / bar / graph / Statistics by Mike
Class Imbalance in a DatasetWhen a dataset has a predictor variable that contains more instances of one outcome than another, we have […] February 7, 2024 in Machine Learning tagged variable / class / feature / imbalance / predictor by Mike
Factors in RIn the R programming language, what is a factor? Factors are used to work with categorical variables, variables […] March 28, 2023 in R Language tagged R / factor / factors / categorical / variable by Mike
PowerShell VariablesYou can create variables while using PowerShell. You always must preface the name with a dollar sign. If […] March 3, 2021 in Windows tagged variable / variables / $ / PowerShell by Mike
WPF Setting Custom Colors as XAML Static ResourcesAre you working on a project that uses custom colors, perhaps corporate colors? Have you been given the […] April 12, 2020 in WPF tagged colors / colours / setting / custom / resource / variable / set / xaml / static by Mike
Variables in XAMLIn your WPF project, would you benefit by creating variables? Perhaps in your XAML code, you need to […] March 30, 2020 in WPF tagged resource / key / variable / static by Mike
C# IdentifiersIdentifiers are character strings used to name things such as variables, methods, parameters, and a host of other […] December 29, 2018 in C# tagged case / variable / identifier / name / camel / keyword / pascal / snake / naming / identify / C# Getting Started by Mike
C# Global ConstantsWhat do we mean by global constants? If you are writing a C# program and you need to […] July 17, 2018 in C# tagged variable / constant by Mike
SQL Server SELECT TOP into variableYou need to select the TOP 1 into a variable in SQL Server. In other words you need […] November 1, 2017 in SQL Server tagged top / variable / select by Mike
SQL Server T-SQL VariablesWe need to back to basics in our Transact SQL (T-SQL) studies and look at programming with variables. […] February 5, 2017 in SQL Server tagged declare / set / temporary / variable by Mike
C# Functions Part 3 ParamsA paramter array is a special parameter for a function. You may pass one and only one parameter […] April 3, 2016 in C# tagged function / array / variable / parameter / param / C# Functions by Mike