Skip to main content
0 votes
1 answer
202 views

I am working on a project where I frequently filter my DataFrame and then return it for further processing. For example, in one file I have this code: df = df[df['Ticker'].str.startswith("...
its m's user avatar
  • 37
0 votes
1 answer
46 views

So far I have this code, that attempts to remove a "document" (a path string, like "./documents/images") from a database, as well as all subdocuments (path strings that start with ...
user31009838's user avatar
2 votes
1 answer
67 views

I'm experiencing an inconsistent behavior between a desktop .NET application and a web-based ASP.NET application (running under Visual Studio). In both, I use the same regular expression: Dim mStart ...
Xavier Junqué's user avatar
1 vote
3 answers
123 views

I'd like to try and pull all files in my working directory that don't begin with the string "CONVERTED" -- so I'd like for list.files() to find "x.csv" but not "CONVERTEDx.csv&...
BlueGyroscope's user avatar
0 votes
1 answer
151 views

class Solution: def countPrefixSuffixPairs(self, words: List[str]) -> int: n = len(words) count = 0 for i in range(n): for j in range(i+1, n): ...
Nyctophilic Enigma's user avatar
1 vote
1 answer
153 views

In the jq script below I want to print either the concatenation of the first_name and the last_name or just the last_name. $ echo '{"first_name": "John", "last_name": &...
az5112's user avatar
  • 682
-3 votes
1 answer
56 views

I need to find cookie name and i try to use import Cookies from "js-cookie" const regexp = /^commercelayer_order-id/; const orderId = Cookies.get(regexp) i am stuck I ve tried several ways ...
Leonel Matias Domingos's user avatar
3 votes
3 answers
362 views

Objective: Remove columns if their name starts with XXX and the rows meet a criteria. For example, in the dataset below, remove all "fillerX" columns which only contain zeros. Data: iris %&...
David Robie's user avatar
0 votes
1 answer
72 views

original wide data frame mean_SRBD: I have a data frame (mean_SRBD). The measurement moments (day 1, day 2, day 3) are included in the suffix of the variables (-D1 = day 1, -D2 = day 2). I want to go ...
Herrewegh's user avatar
1 vote
1 answer
113 views

I have a dynamic Mailing List in Odoo version 15.0+e and I want to exclude all the contacts where Zip code starts with K. Using debug mode, I set the code in Editor according to this as the following: ...
HoRn's user avatar
  • 1,514
0 votes
2 answers
40 views

I have the following data structure: Clients= { "data": [ { "nClients": 3 }, { "name": "Mark", "...
Sim81's user avatar
  • 2,004
-1 votes
1 answer
80 views

Master dataframe filled with a specific match's players and statistics. 34 columns and variable number of rows. Column "Player" has full names Player Goals Assists Dominic Calvert-Lewin 1 1 ...
filipakous's user avatar
-1 votes
3 answers
107 views

So I have a below table P Q R | -------- | --------| -------- | Performan| Dispite | Cammmr | Dispo | camera | battery | Perfumo | Displu | Cammmmt | Disper | ...
Owaishh's user avatar
0 votes
3 answers
83 views

I have a dataframe with 37 columns in it, with a representative sample, df below df <- structure(list(irm = 201201:201202, trans11 = c(379L, 433L), trans12 = 4:3, trans13 = 5:4, trans14 = c(...
jvalenti's user avatar
  • 643
1 vote
3 answers
2k views

I have a powershell script written by somebody else that makes use of uses the output of a command to filter and extract the results. I think I understand what it is attempting to do but not why I am ...
TNPMCHammer's user avatar

15 30 50 per page
1
2 3 4 5
29