Questions tagged [exact-match]
208 questions
2
votes
3 answers
Datatables Individual Column Filtering (Select Tag) : Use Exact Match
I'm using datatables 1.9.4 and the column filtering plugin. It works like a charm except that when I use 'select' tags for column filtering, the filter is not done for exact matches. It's using wildcard search, which I do not want. I thought using a…

asprin
- 9,579
- 12
- 66
- 119
1
vote
2 answers
Why is my XLOOKUP, with a nested MAXIFS, unable to give me an exact match?
First off, here is my formula:
=XLOOKUP(MAXIFS(D:D,E:E,">0"),(B:B=F2)*(A:A="EFP")*D:D,C:C,,-1)
CAMPAIGN
RECORD PHONE#
REP #
PAYMENT DATE
PAYMENT AMT
LEAD PHONE…

cheese10234
- 111
- 8
1
vote
7 answers
SQL does not pull records based on exact date
I exported records and I want to know which record was exported on a particular day. It does not work. Here is the data if I query it.
* comapny Name * * date exported *
ABC Company, Inc 2011-08-01 15:44:52.857
XYZ Company, Inc 2011-08-01…

TheTechGuy
- 16,560
- 16
- 115
- 136
1
vote
4 answers
Python: How to determine if a string has an exact match with any string from the list
Assume that I have the list of phrases to compare against as:
["hello", "hi", "bye"]
I want to return true if my text has any of this words in it, but with exact match. Meaning that: hi there, how are you? returns true, but hithere, how are you?…

Josh
- 189
- 1
- 16
1
vote
3 answers
Finding the exact match in the values in the categorical variables
I wanted to find an exact match in the values between all three columns (rg1,rg2,rg3).Below is my dataframe.
For instance - first row has a combination of (70,71,72) , if this same combination appears in the remaining rows for the rest of the user…

Anonymous
- 25
- 4
1
vote
3 answers
Removing observations conditionally (after use of MatchIt package) in R
I have used the package MatchIt to conduct an exact matching for treatment (treat = 1) and control groups (treat = 0) -- the matching was made through age. The variable subclass reveals the matched units.
I would like to have one control unit…

R novice
- 161
- 8
1
vote
1 answer
Exact Matching with r MatchIt with ratio 1:4
I would like to run an exact match by state but at the same time I would like a ratio of 1 to 4 case:control. Will the following code do the trick? I understand method=exact won't work since that method does not support the ratio parameter. If yes,…

zsalah
- 13
- 2
1
vote
1 answer
Replace exact part of file name with Powershell
I tried the code found here without success.
What I need is to replace an exact text with another, but this code doesn't seem to deal with exact text.
This is the code I used, and what I need is, for example, for a file name that ends with ".L.wav"…

winoni71
- 13
- 4
1
vote
1 answer
Search a word and Get Predictive Search Words from String (not complete string) in Mysql
I have SQL Table Design like Listed Below
*-----------------------------------------
| id | title |
| -- | -----------------------------------|
| 1 | This is nice pen looking good |
| 2 | This is nice pen looking…

M Uzair Qadeer
- 482
- 1
- 8
- 19
1
vote
0 answers
how calculate accuracy in given json
I have a JSON file containing multiple key, which each key has a value containing two list
the first list is my model prediction
the second list is the true value
{
"PMUL1635.json_0": [
[
"hotel-area-east",
"hotel-stars-4",
…

Maryami Najafi
- 127
- 8
1
vote
2 answers
Elasticsearch exact phrase match on JSON
I am working on exact phrase match from a json field using the elasticsearch. I have tried mutiple syntax like multi_match, query_string & simple_query_string but they does not return results exactly as per the given phrase.
query_string syntax that…

Muhammad Muzammil
- 23
- 4
1
vote
1 answer
Finding exact word in description column of DataFrame in Python
My list contains some words like : [‘orange’, ‘cool’, ‘app’....] and I want to output all these exact whole words (if available) from a description column in a DataFrame.
I have also attached a sample picture with code. I used str.findall() The…

ShrestR
- 285
- 1
- 3
- 8
1
vote
2 answers
Elasticsearch exact result not return on a first
I have added some products like 'lcd apple iphone 11' 'lcd apple iphone x' 'lcd apple iphone xs' 'lcd apple iphone xr' 'lcd samsung s8' 'lcd samsung s8+' 'lcd apple iphone xs max' 'lcd apple iphone xr battery' we had added iphone xr product…

Niraj Patel
- 65
- 14
1
vote
1 answer
Issue with conditional formatting cell range based on exact match text in one cell
We track workshop registrations in a google sheet and I'm trying to conditionally format a range of cells (A7:P14) based on the text in cell E7 (Eng DLO, Eng TBC, Sp DLO, Sp TBC).
I used the formula
=COUNTIF($E7:$E, "Eng DLO")
and A7:S14 turned the…

Bri
- 31
- 5
1
vote
1 answer
mysql field="value" in elasticsearch
I want to display only the items that contain the word itself when "google" searches
How can I only search for items that have only the word "google"?
Request body
(Request created in postman)
{
"query": {
"bool": {
"must": [
{
…

user2280483
- 13
- 4