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
Find Standard Deviation In Julia
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.
How To Create Array Literals In Julia
This post is about how to create array literals in Julia. When we write out array values, we create array literals. Julia can readily interpret these array literals. There are other ways to create arrays in Julia, but we will
docker-compose.yml For WordPress And MySQL
To set up WordPress and MySQL in no time and without installing them, here is a useful docker-compose.yml file. If you’re new to WordPress development, you’d probably installed XAMPP and MySQL on your Windows machine. You may not want to
Rust Core Data Types To Get Familiar With
Rust has two types of core data types – scalar and compound. Scalar types are single-value types, while compound types are multi-value types. Integer Data Types An integer data type is one of Rust’s core data types that represents a
Custom Data Types With Struct, Trait, And Enum In Rust
We can create custom data types in Rust using struct, trait, and enum. A struct is a composite data type that groups variables in a memory block. These variables are then accessible via the struct’s instance – also referred to
Define And Use Functions In Julia
This post is about how to define and use functions in Julia. A function is a block of codes that performs a specific operation. It may accept parameters which may influence its behavior. It may also return values to codes
WordPress Plugin And Composer
This post quickly shows the basic usage of WordPress Plugin and Composer. We are to use a PHP library within our own already existing WordPress Plugin. Composer We can use Composer with a WordPress plugin. The composer is a dependency
Show Rust Dependencies Using Cargo
It is now possible to show Rust dependencies using Cargo. Before Rust 1.44.0, there was not a built-in method to display a dependency graph. There was a plugin, though, called cargo-tree. Show Rust Dependencies Using Cargo-tree With the cargo-tree plugin,
Working with Actix-Web HTTP Requests
When working with Actix-Web, we sometimes need to access incoming HTTP requests to inspect for some values. In that case, we need to use the HttpRequest struct either in request handlers and middlewares. Cargo.toml We will use the following dependencies