what are stop words
what are stop words
一、总结
一句话总结:就是在seo的关键词中不要有stop words,不然的话搜索引擎会直接忽略
stop words most common words language
In computing, stop words are words which are filtered out before or after processing of natural language data (text).[1] Though "stop words" usually refers to the most common words in a language, there is no single universal list of stop words used by all natural language processing tools, and indeed not all tools even use such a list. Some tools specifically avoid removing these stop words to support phrase search.
Any group of words can be chosen as the stop words for a given purpose. For some search engines, these are some of the most common, short function words, such as the, is, at, which, and on. In this case, stop words can cause problems when searching for phrases that include them, particularly in names such as "The Who", "The The", or "Take That". Other search engines remove some of the most common words—including lexical words, such as "want"—from a query in order to improve performance.[2]
Hans Peter Luhn, one of the pioneers in information retrieval, is credited with coining the phrase and using the concept.[3] The phrase "stop word", which is not in Luhn's 1959 presentation, and the associated terms "stop list" and "stoplist" appear in the literature shortly afterwards.[4]
A predecessor concept was used in creating some concordances. For example, the first Hebrew concordance, Me’ir nativ, contained a one-page list of unindexed words, with nonsubstantive prepositions and conjunctions which are similar to modern stop words.[5]
In SEO terminology, stop words are the most common words that most search engines avoid, saving space and time in processing large data during crawling or indexing. This helps search engines to save space in their databases.
1、Stop words list?
What exactly are stop words? According to Wikipedia, stop words are the most common words in a language. Since there is no single universal list of stop words available, we’ve created our own list. Learn more about stop words here.
The following list contains most of the stop words used by Yoast SEO and Yoast SEO Premium in English. The full list can be found here.
- a
- about
- above
- after
- again
- against
- all
- am
- an
- and
- any
- are
- as
- at
- be
- because
- been
- before
- being
- below
- between
- both
- but
- by
- could
- did
- do
- does
- doing
- down
- during
- each
- few
- for
- from
- further
- had
- has
- have
- having
- he
- he’d
- he’ll
- he’s
- her
- here
- here’s
- hers
- herself
- him
- himself
- his
- how
- how’s
- I
- I’d
- I’ll
- I’m
- I’ve
- if
- in
- into
- is
- it
- it’s
- its
- itself
- let’s
- me
- more
- most
- my
- myself
- nor
- of
- on
- once
- only
- or
- other
- ought
- our
- ours
- ourselves
- out
- over
- own
- same
- she
- she’d
- she’ll
- she’s
- should
- so
- some
- such
- than
- that
- that’s
- the
- their
- theirs
- them
- themselves
- then
- there
- there’s
- these
- they
- they’d
- they’ll
- they’re
- they’ve
- this
- those
- through
- to
- too
- under
- until
- up
- very
- was
- we
- we’d
- we’ll
- we’re
- we’ve
- were
- what
- what’s
- when
- when’s
- where
- where’s
- which
- while
- who
- who’s
- whom
- why
- why’s
- with
- would
- you
- you’d
- you’ll
- you’re
- you’ve
- your
- yours
- yourself
- yourselves
二、List of stop words
随机推荐
- 批处理:根据进程名称查询进程,如果有进程就输出up没有就输出donw
需求:windows系统上 根据进程名称查询进程,如果有进程就输出 up ,没有就输出 donw. ::Final interpretation is owned by chenglee ::@e ...
- 学习Django,http协议,
学习Django http协议 规则 ''' http协议:超文本传输协议 ①基于TCP/IP协议基础上的应用层协议,底层实现仍为socket ②基于请求-响应模式:通讯一定是从客户端开始,服务器端接 ...
- CSS的再一次深入(更新中···)
全面我们学了6个选择器,今天再来学习两个选择器,分别是通配符选择器和并集选择器: 1.通配符选择器: *{ } 表示body里所有的标签都被选中 2.并集选择器: 选中的标签之间用逗号隔开,表示这几个 ...
- Flutter 第一次运行就出现白屏的问题
--enable-software-rendering 解决办法: 顶部菜单找到 run-->Edit Configurations 中加这么一句:
- ps一些疑问知识点
PS 的核心, 是 选择, 是 抠图, 不管是蒙版, 通道也好等等, 其实主要的作用还是 抠图. 还是精确地 选出你要处理的 内容对象! 如何改变工具预设? 使用工具预设, 可以将你当前正在使用的 / ...
- php文档注释提取工具phpdocumentor的使用
phpDocumentor, 分为文档性注释, 和 非文档性注释; 命令为: phpdoc -h, -f, -d.... 提取/ 生成 程序的注释文档, 实际上有很多种工具, 如: doc++, do ...
- bzoj1566: [NOI2009]管道取珠 DP
题目链接 https://www.lydsy.com/JudgeOnline/problem.php?id=1566 思路 n个球,第i个球颜色为ai,对于颜色j,对答案的贡献为颜色为j的球的个数的平 ...
- HDU 4638 Group(莫队)题解
题意:n个数,每个数有一个值,每次询问一个区间,问你这个区间能分成连续的几段(比如7 1 2 8 就是两端 1 2 和 7 8) 思路:莫队.因为L.R移动顺序wa了20发...问了一下别人,都是先扩 ...
- SQL Server 常见数据类型介绍
数据表是由多个列组成,创建表时必须明确每个列的数据类型,以下列举SQL Server常见数据类型的使用规则,方便查阅. 整数类型 int 存储范围是-2,147,483,648到2,147,483,6 ...
- @PathVariable与@RequestBody的区别,及前段请求接口的写法。
@PathVariable 1:接受参数时,地址栏为:/{args1}/{args2} 2:用法:(@PathVariable(value = "args")Long id) 3 ...