英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

settling    音标拼音: [s'ɛtəlɪŋ] [s'ɛtlɪŋ]
n. 沉淀物

沈淀物

settling
安顿

settling
n 1: a gradual sinking to a lower level [synonym: {settling},
{subsiding}, {subsidence}]

Settle \Set"tle\, v. t. [imp. & p. p. {Settled}; p. pr. & vb. n.
{Settling}.] [OE. setlen, AS. setlan. [root]154. See
{Settle}, n. In senses 7, 8, and 9 perhaps confused with OE.
sahtlen to reconcile, AS. sahtlian, fr. saht reconciliation,
sacon to contend, dispute. Cf. {Sake}.]
1. To place in a fixed or permanent condition; to make firm,
steady, or stable; to establish; to fix; esp., to
establish in life; to fix in business, in a home, or the
like.
[1913 Webster]

And he settled his countenance steadfastly upon him,
until he was ashamed. --2 Kings
viii. 11.
(Rev. Ver.)
[1913 Webster]

The father thought the time drew on
Of setting in the world his only son. --Dryden.
[1913 Webster]

2. To establish in the pastoral office; to ordain or install
as pastor or rector of a church, society, or parish; as,
to settle a minister. [U. S.]
[1913 Webster]

3. To cause to be no longer in a disturbed condition; to
render quiet; to still; to calm; to compose.
[1913 Webster]

God settled then the huge whale-bearing lake.
--Chapman.
[1913 Webster]

Hoping that sleep might settle his brains. --Bunyan.
[1913 Webster]

4. To clear of dregs and impurities by causing them to sink;
to render pure or clear; -- said of a liquid; as, to
settle coffee, or the grounds of coffee.
[1913 Webster]

5. To restore or bring to a smooth, dry, or passable
condition; -- said of the ground, of roads, and the like;
as, clear weather settles the roads.
[1913 Webster]

6. To cause to sink; to lower; to depress; hence, also, to
render close or compact; as, to settle the contents of a
barrel or bag by shaking it.
[1913 Webster]

7. To determine, as something which is exposed to doubt or
question; to free from unscertainty or wavering; to make
sure, firm, or constant; to establish; to compose; to
quiet; as, to settle the mind when agitated; to settle
questions of law; to settle the succession to a throne; to
settle an allowance.
[1913 Webster]

It will settle the wavering, and confirm the
doubtful. --Swift.
[1913 Webster]

8. To adjust, as something in discussion; to make up; to
compose; to pacify; as, to settle a quarrel.
[1913 Webster]

9. To adjust, as accounts; to liquidate; to balance; as, to
settle an account.
[1913 Webster]

10. Hence, to pay; as, to settle a bill. [Colloq.] --Abbott.
[1913 Webster]

11. To plant with inhabitants; to colonize; to people; as,
the French first settled Canada; the Puritans settled New
England; Plymouth was settled in 1620.
[1913 Webster]

{To settle on} or {To settle upon},
(a) to confer upon by permanent grant; to assure to. "I .
. . have settled upon him a good annuity." --Addison.
(b) to choose; to decide on; -- sometimes with the
implication that the choice is not ideal, but the
best available.

{To settle the land} (Naut.), to cause it to sink, or appear
lower, by receding from it.
[1913 Webster]

Syn: To fix; establish; regulate; arrange; compose; adjust;
determine; decide.
[1913 Webster]


Settling \Set"tling\, n.
1. The act of one who, or that which, settles; the act of
establishing one's self, of colonizing, subsiding,
adjusting, etc.
[1913 Webster]

2. pl. That which settles at the bottom of a liquid; lees;
dregs; sediment. --Milton.
[1913 Webster]

{Settling day}, a day for settling accounts, as in the stock
market.
[1913 Webster]


请选择你想看的字典辞典:
单词字典翻译
Settling查看 Settling 在百度字典中的解释百度英翻中〔查看〕
Settling查看 Settling 在Google字典中的解释Google英翻中〔查看〕
Settling查看 Settling 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • 第02集-stata常见函数命令合集 - 知乎
    1 display #用于展示相应变量的数值 比如求解:单个变量的平均数和总平均数用来计算离差平方和 display r(mean) #用于展示相应变量的平均值 2 egen r=rowmean (x1,x2,x) #忽略任何缺失值的行平均数,它是gen的进阶版
  • stata求绝对值的命令 - 百度文库
    本文将介绍 Stata 中求绝对值的命令及其使用方法。 其中,`income dta`为数据文件名,`clear`表示清除之前的数据。 其中,`Expression`表示需要求绝对值的表达式。 Stata 中的`abs ()`命令没有参数。 假设我们已经收集了一批数据,其中包含一个名为`income`的变量,表示家庭收入。 现在我们想求这个变量的绝对值。 本文介绍了Stata 中求绝对值的命令`abs ()`及其使用方法。 通过实例演示,我们学会了如何对变量求绝对值。 Stata 是一款由美国 Stata 公司开发的统计分析软件,自 1985 年问世以来,已经更新到多个版本,支持多种操作系统,如 Windows、Mac 和 Linux 等。
  • stata取绝对值的代码 - 纳米AI搜索
    使用 `abs ()` 函数 在 Stata 中,可以使用 `abs ()` 函数来计算变量的绝对值。 `abs ()` 函数接受一个数值参数,并返回其绝对值。 示例代码 假设你有一个变量 `x`,你想要计算它的绝对值并存储在新的变量 `abs_x` 中,可以使用以下代码: ```stata generate abs_x = abs (x) ``` 解释 - `generate`:用于创建一个新的变量。 - `abs_x`:新变量的名称,表示 `x` 的绝对值。 - `abs (x)`:计算变量 `x` 的绝对值。 注意事项 - 如果变量 `x` 是字符串或其他非数值类型,`abs ()` 函数将无法正常工作,并会抛出错误。
  • 实用工具积累_stata labone-CSDN博客
    本文介绍了Stata中的关键命令,如删除重复行(dropduplicates)、设置标签(labonenrow)、变量重命名(rename)、取绝对值(abs)、构建滞后项、数据合并(merge)、相关性分析和导出结果(esttab)。
  • stata 绝对值-经管之家(原经济论坛)-经济、管理、金融、统计 . . .
    在下刚刚使用stata,不太熟练,想请教一下假如想求多个变量绝对值的和应该用什么命令。我的变量中存在缺失值,如果简单用加号的话其中一个变量有缺失就会导致求和缺失,我想用rowtotal但是软件显示 2019-3-29 10:34 - gxnnwcy - Stata专版
  • STATA常用29条命令总结 | 社科之家
    2、by: 按照某一变量的取值来进行分析 例:by group,sort: regress Y x1 x2 按照不同的组,对Y做回归分析 3、weight: 加权或者频数 例:fw=频数变量 多用在四格表资料中或者未原资料未给出所有值,只给出了值和对应的频数 4、if: 用条件语句指定
  • 经管之家(原经济论坛)-国内活跃的经济、管理、金融、统计 . . .
    如何在Stata中使用state函数取绝对值。
  • stata中的空值怎么表示? - 虚拟屋
    一、stata中的空值怎么表示? stata分析软件中的空值一般用符号Null来表示。 二、stata中如何取绝对值? 通过Math abs()函数,如下: var test=-10; var absValue=Math abs(test); 三、stata中如何给变量
  • Stata基础操作指南:数据处理与统计分析-CSDN博客
    请使用Stata命令进行操作:(1)试着生成新的变量来描述各地区的平均工资情况;(2)试着生成平均工资变量来替代原有的工资总额变量;(3)对生成的平均工资变量数据均做除以10的处理;(4)对就业人口变量进行对数平滑处理,从而生成新的变量。





中文字典-英文字典  2005-2009