MATCH (p:Paper)-[:WRITTEN_BY]->(a:Author)
WITH a, p, size((p)-[:CITED_BY]->()) as numCit
WITH a, min(numCit) as minCitations, collect(p {.title, numCit}) as papers
UNWIND papers as paper
RETURN a.authorName as authorName, minCitations, paper.title as title, paper.numCit as numCit
ORDER BY authorName
我在excel中打开了json文件,我收集了大约12,000条推文。它们在“文本”列下,但我不知道如何按文本过滤。这些推文也有很多奇怪的字符,看起来不像基本字符串。我不知道如何将这些数据排序为字符串格式。