Top "Max" questions

Maximum value.

Return Max Value of range that is determined by an Index & Match lookup

I need a cell to display the max value of a range who's row is defined by an index and …

excel excel-formula max excel-2010 excel-match
Find the smallest amongst 3 numbers in C++

Is there any way to make this function more elegant? I'm new to C++, I don't know if there is …

c++ max min
Min and max value of input in angular4 application

I have an angular4 application with a form. In this one I have an input to enter a percentage. So, …

angular input max min
Python max and min

I'm pretty new to Python, and what makes me mad about my problem is that I feel like it's really …

python max min
Python Pandas add column for row-wise max value of selected columns

data = {'name' : ['bill', 'joe', 'steve'], 'test1' : [85, 75, 85], 'test2' : [35, 45, 83], 'test3' : [51, 61, 45]} frame = pd.DataFrame(data) I would like to add …

python python-2.7 pandas max
How do I write a MAX query with a where clause in JPA 2.0?

I'm using JPA 2.0. Hibernate 4.1.0.Final, and Java 6. How do I write a JPA query from the following psuedo-SQL? select max(…

hibernate jpa jpa-2.0 max criteria
C++ Help finding the max value in a map

I've been doing a basic program to find the max, min, median, variance, mode etc. of a vector. Everything went …

c++ dictionary vector max mode
How to limit a number to be within a specified range? (Python)

I want to limit a number to be within a certain range. Currently, I am doing the following: minN = 1 maxN = 10 …

python max min
5 maximum values in a python dictionary

I have a dictionary like this: A = {'a':10, 'b':843, 'c': 39,.....} I want to get the 5 maximum values of this dict …

python dictionary max
How to extract the row with min or max values?

With a dataframe like this one: ID Year Temp ph 1 P1 1996 11.3 6.80 2 P1 1996 9.7 6.90 3 P1 1997 9.8 7.10 ... 2000 P2 1997 10.5 6.90 2001 P2 1997 9.9 7.00 2002 P2 1997 10.0 6.93 if I want to …

r max min