Top "Minimum" questions

Minimum refers to the value in a collection of values that is the least or smallest.

Select distinct from usercolumn and minimum value of dates for each field in usercolumn

I have some data like this but more than 1500000 records and more than 700 users: usercolumn , datecolumn\ a1 , 1998/2/11\ a2 , 1998/3/11\ a1 , 1998/2/15\ a4 , 1998/4/14\ …

sql distinct aggregate-functions minimum
List minimum in Python with None?

Is there any clever in-built function or something that will return 1 for the min() example below? (I bet there is …

python list max python-2.x minimum
Set highcharts y-axis min value to 0, unless there is negative data

I'm having an issue with highcharts where I have a number of different charts being generated by JSON calls. For …

highcharts axis default-value minimum
Ruby: How to find the index of the minimum array element?

Is there any way to rewrite this more elegant? I think, that it's a bad piece of code and should …

ruby arrays indexing element minimum
Extracting minimum values per row using numpy

I have a question and I could not find the answer on the internet nor on this website. I am …

python numpy matrix row minimum
Swift 4 - Setting a minimum deployment target

The current deployment target is 11.0 which is fine. However, I would like to know how I would set a minimum …

ios xcode deployment target minimum
How can I override the minimum-font-size in Firefox?

My site displays just like in need in IE and Opera, but in Firefox I can't get (via CSS) to …

css firefox browser font-size minimum
Finding the minimum in an unsorted array in logarithmic time

Is there an algorithmic approach to find the minimum of an unsorted array in logarithmic time ( O(logn) )? Or is …

arrays complexity-theory big-o minimum
Python: get key with the least value from a dictionary BUT multiple minimum values

I'm trying to do the same as Get the key corresponding to the minimum value within a dictionary, where we …

python dictionary multiple-instances minimum
Is there a vectorized parallel max() and min()?

I have a data.frame with columns "a" and "b". I want to add columns called "high" and "low" that …

r parallel-processing vectorization max minimum