Programming Articles

Page 2050 of 2547

Return the underlying data as a view of the masked array in Numpy

AmitDiwan
AmitDiwan
Updated on 21-Feb-2022 321 Views

To return the underlying data, as a view of the masked array, use the ma.MaskedArray.data in Python Numpy.A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, or an array of booleans that determines for each element of the associated array whether the value is valid or not.StepsAt first, import the required library −import numpy as np import numpy.ma as maCreating a 4x4 array with int elements using the numpy.arange() method −arr = np.arange(16).reshape((4, 4)) print("Array...", arr) print("Array type...", arr.dtype)Get the dimensions ...

Read More

Return the mask of a masked array in Numpy

AmitDiwan
AmitDiwan
Updated on 21-Feb-2022 1K+ Views

To return the mask of a masked array, use the ma.getmask() method in Python Numpy. Returns the mask of a as an ndarray if a is a MaskedArray and the mask is not nomask, else return nomask. To guarantee a full array of booleans of the same shape as a, use getmaskarray.A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, or an array of booleans that determines for each element of the associated array whether the value is valid or not.StepsAt ...

Read More

Count the number of masked elements along axis 1 in Numpy

AmitDiwan
AmitDiwan
Updated on 21-Feb-2022 225 Views

To count the number of masked elements along axis 1, use the ma.MaskedArray.count_masked() method. The axis is set using the "axis" parameter. The method returns the total number of masked elements (axis=None) or the number of masked elements along each slice of the given axis.The axis parameter is the axis along which to count. If None (default), a flattened version of the array is used.StepsAt first, import the required library −import numpy as np import numpy.ma as maCreating a 4x4 array with int elements using the numpy.arange() method −arr = np.arange(16).reshape((4, 4)) print("Array...", arr) print("Array type...", arr.dtype)Get the dimensions of ...

Read More

Return the mask of a masked array or full boolean array of False in Numpy

AmitDiwan
AmitDiwan
Updated on 21-Feb-2022 477 Views

To return the mask of a masked array, or full boolean array of False, use the ma.getmaskarray() method in Python Numpy. Returns the mask of arr as an ndarray if arr is a MaskedArray and the mask is not nomask, else return a full boolean array of False of the same shape as arr.A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, or an array of booleans that determines for each element of the associated array whether the value is valid ...

Read More

How to check if a string contains a substring in Golang?

Mukul Latiyan
Mukul Latiyan
Updated on 21-Feb-2022 1K+ Views

We know that substrings are a contiguous sequence of characters in a string, and in order to check whether a string contains a substring, we have two options available.The first approach is to use a built-in function called Contains() and the second approach is to make use a self-written logic for the same.The syntax for the Contains() function of the strings package is shown below.func Contains(s, substr string) boolIn the above syntax, there are two parameters inside the function Contains(). The first parameter is the string in which we are trying to find the pattern, and the second is the ...

Read More

How to check if a key exists in a map in Golang?

Mukul Latiyan
Mukul Latiyan
Updated on 21-Feb-2022 994 Views

We know that maps in Go contain key-value pairs. There are often instances where we would want to know that a certain key exists in a map or not, in such cases, we have two options available.The first approach is very naive, as in this approach, we basically iterate over the map with the help of the range clause and then compare each key to the key that we want to check if is available or not.And the second approach is a bit better, as we make use of the if statement with a bit of syntactic sugar.Let's first check ...

Read More

How to check if a slice contains an element in Golang?

Mukul Latiyan
Mukul Latiyan
Updated on 21-Feb-2022 4K+ Views

Many languages do provide a method similar to indexOf() where one can find the existence of a particular element in an array-like data structure. However, in Golang, there's no such method and we can simply implement it with the help of a for-range loop.Let's suppose we have a slice of strings, and we want to find out whether a particular string exists in the slice or not.Example 1Consider the code shown below.package main import (    "fmt" ) func Contains(sl []string, name string) bool {    for _, value := range sl {       if value == name ...

Read More

Number Parsing in Golang

Mukul Latiyan
Mukul Latiyan
Updated on 21-Feb-2022 864 Views

Number parsing in Go is about converting the numbers that are present in string form to number form. By number form, we mean that these numbers can either be converted into integers, floats, etc.The most widely used package for number parsing is the "strconv" package that Go library provides us with. There are many cases that are present in the number parsing in Go, we will talk about all of these one by one in this article.The most basic approach is when we have a base 10 number that is actually present in a string form and we want to ...

Read More

How to measure the execution time in Golang?

Mukul Latiyan
Mukul Latiyan
Updated on 21-Feb-2022 6K+ Views

In Go, we have a package named time that is present in Go's standard library. This time package contains different useful functions that we can use to calculate the time taken by a code block or even a function in Go.The most widely used functions are time.Sleep(), time.Since() and time.Now(). In this article, we will see how to use all these functions.Let's first consider a very basic example where we will use all these functions.Example 1Consider the code shown below.package main import (    "fmt"    "time" ) func main() {    fmt.Println("Measuring time in Go")    start := time.Now() ...

Read More

How to use functions from another package in Golang?

Mukul Latiyan
Mukul Latiyan
Updated on 21-Feb-2022 4K+ Views

We know that every code in Golang is present inside a package, which can either be an executable one or a utility one. The executable package name is usually main and the name of the utility package can be anything, in most cases, it is the name of the folder.Suppose we have a directory structure that looks something like this.. |-- greet |    `-- greet.go |-- sample |    `-- sample.goWe have two directories, namely, greet and sample, and each of them contains a single .go file inside them. Now, we want to make use of a function that ...

Read More
Showing 20491–20500 of 25,466 articles
Advertisements