R-like range() function
See original GitHub issueIn R, if I supply range(dataframe), I get back a vector of the minimum value in all the dataframe and the maximum value in all the dataframe.
DataFrame’s min() and max() functions operate only on single columns. The way to do it currently is
minimum, maximum = (min(df.min()), max(df.max())
It’s not a critical limitation, but it is convenient to have at times.
Issue Analytics
- State:
- Created 12 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
RLIKE operator in MySQL
RLIKE : This operator in MySQL is used to performs a pattern match of a string expression against a pattern. Syntax : RLIKE...
Read more >Python range() Function
The python range() function creates a collection of numbers on the fly, like 0, 1, 2, 3, 4. This is very useful, since...
Read more >Spark rlike() Working with Regex Matching Examples
rlike() function can be used to derive a new Spark/PySpark DataFrame column from an existing column, filter data by matching it with regular ......
Read more >MySQL 8.0 Reference Manual :: 12.8.2 Regular Expressions
Returns the starting index of the substring of the string expr that matches the regular expression specified by the pattern pat , 0...
Read more >RLIKE
RLIKE is similar to the LIKE function, but with POSIX extended regular expressions instead of SQL LIKE pattern syntax. It supports more complex...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
What about
df.describe()
?feel free to just accumulate things in a branch and I’ll merge them whenever. i’m about to put the kibosh on anymore changes to 0.5.1, do a little more sanity checking, fix up docs, then cut the release