Although there is the Statistics.std function, this post shows how to find the Standard Deviation in Julia using custom codes. What is Standard Deviation? The Standard Deviation is a value that shows how much the values deviate from their mean.
Find Interquartile Range In Julia
This post shows how to find the Interquartile Range (IQR) in Julia. We will use custom codes and move them into a function for reusability. Interquartile Range With Custom Codes Before moving on, please install Julia plugin for IntelliJ IDEA. Using
Install And Use Julia Plugin for IntelliJ IDEA
Julia has a plugin for IntelliJ IDEA that we can install and use instead of Atom with Juno. The plugin may not be full-featured but good enough for as a starter IDE. Requirements We used the following items for this
How To Modify Struct Instance In A Function in Rust
This post shows how to modify a struct instance in a function. It uses the mutable shared borrowing to pass a mutable reference as an argument to a function. Struct And Instance Consider the following Person struct. It has two
Install Julia And Run Source Code Files In Windows
This post is about how to install Julia and run source code files in Windows. Once we install it, we need to configure it a bit to make the Julia executable file available in command-line windows. Download And Install Julia
Rust And Ubuntu 18.04 Docker Image
This post shows how to build a Ubuntu 18.04 Docker image with installed Rust. We can use the image to build Rust applications, but the codes are in the host Windows system. When we compile the codes, we need to
What Are References In Rust And How To Use Them?
Understanding what references are in Rust and how to use them is crucial. A reference is a pointer to a memory location. A location where the data we’re interested in reside. A Rust reference is similar to the traditional pointers
Working With Dates And Times In Ruby – Format / Compute
Without using any Ruby gems, Time is the class we can use when working with dates and times. It represents the number of seconds with fraction since the Epoch, January 1, 1970, 00:00 UTC. The Time class treats GMT (Greenwich
Should You Use string or String in C#?
If you’re new to C#, you’ll notice there are sort of 2 types of strings – string and String. The first type is spelled out in lowercase letters; while the second is a proper noun. Built-in Reference String Type C#
Enum Variants And Match Expressions In Rust
There are a few ways to define an enum variant and, as a result, to use it when creating match expressions. We can define a variant in three ways – one-word, Tuple-like, or Struct-like. Match One-Word Enum Variants Let’s say