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
随机推荐
- html5-Input类型
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>html5-Input类型& ...
- python简说(三)字典
一.字典 stu_info = {"name": "王志华", "age": 18, "addr": "北京& ...
- python引入模块
1.自定义模块model_1.py def add(a,b): return a+b def dec(a,b): return a-b HEAD = "55AA" 2.程序代码 i ...
- topcoder srm 691 div1 -3
1.给定一个$n$个顶点$n$个边的图,边是$(i,a_{i})$,顶点编号$[0,n-1]$.增加一个顶点$n$,现在选出一个顶点集$M$,对于任意的在$M$中 的顶点$x$,去掉边$(x,a_{x ...
- Python3 tkinter基础 Label justify 多行字符串左对齐
Python : 3.7.0 OS : Ubuntu 18.04.1 LTS IDE : PyCharm 2018.2.4 Conda ...
- MongoDB的常用操作总结
简介 MongoDB是一款强大.灵活.且易于扩展的通用型数据库 MongoDB 是由C++语言编写的,是一个基于分布式文件存储的开源数据库系统. 在高负载的情况下,添加更多的节点,可以保证服务器性能. ...
- imx6ul linux4.1.15 LED驱动配置及heartbeat源码分析【转】
本文转载自:https://blog.csdn.net/u010444107/article/details/78328807 1)查看内核配置wujun@wj-vBox:~/freescale/li ...
- 集训DAYn——组合数学(1)
组合 又到了我们信息老师讲数学课了,吼吼吼 然后数学老师中途探望了一下,哇塞塞,然后他看到黑板上的题,微妙的笑了. 排列: 从n个数中有序的选出m个数的方案数是多少?第一个数有n种取法,第二个数有n- ...
- JavaI/O(输入/输出)
File类 通过File类可以在程序中操作文件和目录,File能新建.删除.重命名文件和目录,但是不能访问文件内容本身. 理解I/O流 流(stream)是从起源(source)到接收(sink)的有 ...
- p3168 [CQOI2015]任务查询系统(差分+主席树)
恕我才学浅薄,一开始想到的是树状数组+线段树,然后看了题解才第一次见到了差分这种神奇的科技 仔细想想,主席树的本质不就是前缀和嘛,加上一个差分也是可以的,没想到真是罪过罪过 对时间维护一个差分 在Si ...