Top "Filtering" questions

In signal processing the complete or partial suppression of some aspect of the signal.

Android LogCat Filter for multiple tags in Eclipse

Clicked on create filter could not figure out from docs how to create a filter for say two or more …

android filter filtering logcat
How to filter docker process based on image

I have been trying to get the container id of docker instance using docker process command, but when i'm trying …

docker filtering
jQuery dataTables - get filtered column values

I am using a jQuery dataTable and when the user selects a drop down it searches the data table and …

filtering datatables-1.10
Guava - How to remove from a list, based on a predicate, keeping track of what was removed?

I have an ArrayList to be filtered, and various Guava Predicates to filter it with. This list will have only 50…

java collections filtering guava predicate
Partial search in HashMap

I need to create phone book kind of thing. It contains name & number. Now when I type letters matching …

java map filtering
Remove rows from dataframe that contains only 0 or just a single 0

I am trying to create a function in R that will allow me to filter my data set based on …

r filtering bioinformatics data-processing
LINQ Where Ignore Accentuation and Case

What is the easiest way to filter elements with LINQ through the Where method ignoring accentuation and case? So far, …

c# .net linq linq-to-sql filtering
Is there a way to make empty packages visible in Eclipse?

Is there a way in Eclipse, to see empty parent packages? I have an issue freely viewing/accessing package new.…

java eclipse filtering packages
"Stop words" list for English?

I'm generating some statistics for some English-language text and I would like to skip uninteresting words such as "a" and "…

language-agnostic indexing filtering stop-words nlp
How to dynamically do filtering in Java 8?

I know in Java 8, I can do filtering like this : List<User> olderUsers = users.stream().filter(u -&…

java lambda filtering java-8