python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to get the subject and object values from freebase given the relation?
I downloaded the freebase dump to find triples.
I used zgrep to pull a sample of the profession relation (predicate) like this:
zgrep -a '/ns/people.person.profession' -m 20 freebase-rdf-latest.gz
a...
Faisal Mirza
Votes: 0
Answers: 0
Extract full link from a list in Google colab
I'm trying to extract a column of links from this kind of rows in a column
{'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q47099'}
To this:
http://www.wikidata.org/entity/Q47099
Basically I...
user16239103
Votes: 0
Answers: 1
Extract databases, schemas, tables, and column names from SQL scripts
I need to create a spreadsheet listing the database, schema, table, and column name for every field from ~100 SQL scripts. Is there a way in SQL, Python or R to do this? I am currently attempting to d...
user3185170
Votes: 0
Answers: 1
Extracting date and time from cell in google sheets
I'm trying to extract the time and date from the following cell in google sheets: 2022-02-21T05:14:05.556Z
I've managed to extract the time with the formula: =TIMEVALUE(REGEXEXTRACT(D2,"\d+:\d+:\...
Hayo
Votes: 0
Answers: 1