visualisation中文翻譯,visualisation是什么意思,visualisation發(fā)音、用法及例句
- 內(nèi)容導(dǎo)航:
- 1、visualisation
- 2、科學(xué)可視化:Python + Matplotlib(英文翻譯)
1、visualisation
visualisation發(fā)音
英: 美:
visualisation中文意思翻譯
常見釋義:
n.(英)可視化(等于visualization)
visualisation雙語使用場景
1、So I have recomposed this holy image with seals to repay His kindness and for my better visualisation. I would like to share it with You.───因此我重制這張圣像加上印文以酬謝他的慈恩,以便我更好的觀想。我想和您分享此像。
2、The duration of these, thought form, created objects depends on the strength of your creative visualisation ability.───這些思想形式所創(chuàng)造的物體的延續(xù)時間取決于你創(chuàng)造性的觀想能力的強(qiáng)度。
3、Visualisation is a relatively new discipline.───視覺化是一個相對新的學(xué)科。
4、Failure reset: Incoming faults have to be acknowledged by pressing the "Failure reset" button on the visualisation .───出錯后復(fù)位:出現(xiàn)的錯誤必需要按動面板上的“出錯后復(fù)位”鍵來認(rèn)可。
5、You as ever chose your path and it can be exactly as you want it to be through visualisation, and focussing upon what you want.───你們一直在選擇你們的道路,而通過清楚地呈現(xiàn)在心中(觀想),和聚焦于你們想要的事物上,它能夠成為正如你們想要它成為的。
6、A conceptual visualisation of multiple coccus bacteria on a cellular surface.───一個細(xì)胞表面有多個球菌的概念性視圖。
7、I have been listening to a visualisation self hypnosis CD every single day for 33 days now.───我現(xiàn)在在聽33天的可視化自我催眠的CD。
8、Dr Cerf hopes to eventually compare people's memories of their dreams with an electronic visualisation of their brain activity.───cert博士希望最終對比人們的他們夢的回憶,并且用一個電子的可視化系統(tǒng)看他們的大腦的活動。
9、Another visualisation suggested by spiritual teacher Paramhansa Yogananda is to see the anger-rousing agent as a 5 year old child.───精神導(dǎo)師ParamhansaYogananda說另一個視覺化練習(xí)是將激發(fā)憤怒的人看做一個5歲孩子。
visualisation相似詞語短語
1、school of visual arts───視覺藝術(shù)學(xué)院
2、visual foxpro───可視化開發(fā)工具;管理系統(tǒng)中信息技術(shù)的應(yīng)用
3、visual communication───視覺通訊;可視通信
4、visual memory───視覺記憶
5、visual impact───視覺沖擊,視覺震撼;視覺效果
6、visual artist───視覺藝術(shù)家
7、cerate vpn visual studio───蠟像虛擬專用網(wǎng)visual studio
8、visual acuity───n.視覺靈敏度; 視敏度;[眼科]視敏度
9、p cnivisualizing───消毒
10、visualize object───可視化對象
2、科學(xué)可視化:Python + Matplotlib(英文翻譯)
by Nicolas P. Rougier, Bordeaux, November 2021.
PDF地址: https://hal.inria.fr/hal-03427242/document
原文:
The Python scientific visualisation landscape is huge. It is composed of a myriad of tools, ranging from the most versatile and widely used down to the more specialised and confidential. Some of these tools are community based while others are developed by companies. Some are made specifically for the web, others are for the desktop only, some deal with 3D and large data, while others target flawless 2D rendering.
翻譯:
Python 科學(xué)可視化領(lǐng)域是巨大的(見下圖)。它由無數(shù)工具組成,從最通用和最有廣泛性的工具到更專業(yè)和達(dá)到機(jī)密級的工具。其中一些工具是基于社區(qū)的,而另一些則是由公司開發(fā)的。有些是專門為 Web 制作的,有些僅適用于桌面,有些用于處理 3D 和大數(shù)據(jù),而有些則針對完美的 2D 渲染。
原文:
Figure : The most important element of a figure is the figure itself. It is created when you call the figure method and we’ve already seen you can specify its size but you can also specify a background color (facecolor) as well as a title (suptitle). It is important to know that the background color won’t be used when you save the figure because the savefig function has also a facecolor argument (that is white by default) that will override your figure background color. If you don’t want any background you can specify transparent=True when you save the figure.
Axes : This is the second most important element that corresponds to the actual area where your data will be rendered. It is also called a subplot. You can have have one to many axes per figure and each is usually surrounded by four edges (left, top, right and bottom) that are called spines. Each of these spines can be decorated with major and minor ticks (that can point inward or outward), tick labels and a label. By default, matplotlib decorates only the left and bottom spines.
Axis : The decorated spines are called axis. The horizontal one is the xaxis and the vertical one is the yaxis. Each of them are made of a spine, major and minor ticks, major and minor ticks labels and an axis label.
Spines : Spines are the lines connecting the axis tick marks and noting the boundaries of the data area. They can be placed at arbitrary positions and may be visible or invisible.
Artist : Everything on the figure, including Figure, Axes, and Axis objects, is an artist. This includes Text objects, Line2D objects, collection objects, Patch objects. When the figure is rendered, all of the artists are drawn to the canvas. A given artist can only be in one Axes.
翻譯:
Figure(圖形):圖形中最重要的元素是Figure本身。它是在你調(diào)用 figure 方法時創(chuàng)建的,我們已經(jīng)看到你可以指定它的大小,但你也可以指定背景顏色 (facecolor) 和標(biāo)題 (suptitle)。重要的是保存圖形時不會使用背景顏色,因為 savefig 函數(shù)也有一個 facecolor 參數(shù)(默認(rèn)為白色),它將覆蓋圖形背景顏色。如果您不想要任何背景,您可以在保存圖形時指定 transparent=True。
Axes(軸域) :這是第二個最重要的元素,對應(yīng)于將呈現(xiàn)數(shù)據(jù)的實(shí)際區(qū)域。它也被稱為子圖。每個圖形可以有一個到多個Axes ,每個軸通常被稱為spines的四個邊緣(左、上、右和下)包圍。這些spines中的每一個都可以裝飾有主要和次要刻度(可以指向內(nèi)或向外)、刻度標(biāo)簽和標(biāo)簽。默認(rèn)情況下,matplotlib 只裝飾左側(cè)和底部的Spines。
Axis(軸):軸上的刻度稱為Axis。水平軸是 x 軸,垂直軸是 y 軸。它們中的每一個都由Spines、主要和次要刻度、刻度標(biāo)簽以及軸標(biāo)簽組成。
Spines(圖脊):Spines 是連接軸刻度線和關(guān)注數(shù)據(jù)區(qū)域邊界的線。它們可以放置在任意位置并且可以是可見的或不可見的。
Artist(藝術(shù)家):圖形上的所有內(nèi)容,包括圖形、軸和軸對象,都是 Artist 。這包括 Text 對象、Line2D 對象、集合對象、Patch 對象。當(dāng)圖形被渲染時,所有的 Artist 都被繪制到畫布上。給定的 Artist 只能在一個 Axes 中。
原文:
Given the definition above, problems arise when how a visual is perceived differs significantly from the intent of the conveyer. Consequently, it is important to identify, as early as possible in the design process, the audience and the message the visual is to convey. The graphical design of the visual should be informed by this intent.
Only after identifying the message will it be worth the time to develop your figure, just as you would take the time to craft your words and sentences when writing an article only after deciding on the main points of the text.
A figure can be displayed on a variety of media, such as a poster, a computer monitor, a projection screen (as in an oral presentation), or a simple sheet of paper (as in a printed article). Each of these media represents different physical sizes for the figure, but more importantly, each of them also implies different ways of viewing and interacting with the figure.
Whether describing an experimental setup, introducing a new model, or presenting new results, you cannot explain everything within the figure itself—a figure should be accompanied by a caption. The caption explains how to read the figure and provides additional precision for what cannot be graphically represented.
All plots require at least some manual tuning of the different settings to better express the message, be it for making a precise plot more salient to a broad audience, or to choose the best colormap for the nature of the data.
Color is an important dimension in human vision and is consequently equally important in the design of a scientific figure.
What distinguishes a scientific figure from other graphical artwork is the presence of data that needs to be shown as objectively as possible.
Chartjunk refers to all the unnecessary or confusing visual elements found in a figure that do not improve the message (in the best case) or add confusion (in the worst case).
Remember, in science, message and readability of the figure is the most important aspect while beauty is only an option.
There exist many tools that can make your life easier when creating figures, and knowing a few of them can save you a lot of time.
翻譯:
如上所述,當(dāng)視覺所展示的與表達(dá)者的意圖明顯出現(xiàn)偏差時,就會出現(xiàn)問題。 因此,在設(shè)計過程中盡早確定受眾和視覺傳達(dá)的信息非常重要。 視覺的圖形設(shè)計應(yīng)以此意圖為依據(jù)。
只有在確定了信息之后,才值得花時間開發(fā)你的圖形,就像你在寫一篇文章時,只有在確定了文本的要點(diǎn)之后,才會花時間精心制作你的單詞和句子。
圖形可以顯示在各種媒介上,例如海報、計算機(jī)顯示器、投影屏幕(如宣講會)或簡單的紙(如印刷品)。每一個媒介都代表了圖形的不同物理尺寸,但更重要的是,每一個還提示了觀看者和與圖形互動的不同方式。
無論是說明如何設(shè)置實(shí)驗、引入新模型還是展示新結(jié)果,圖形都無法解釋本身的所有內(nèi)容——圖形應(yīng)附有備注。備注解釋了如何閱讀該圖并為無法用圖形表示的內(nèi)容提供更精確的說明。
所有的圖形都至少需要對不同的缺省值進(jìn)行一些手動調(diào)整,以更好地表達(dá)信息,不僅是為了使圖形對廣大觀眾更加突出精確,還需要對數(shù)據(jù)的性質(zhì)選擇最佳顏色圖。
顏色是人類視覺中的一個重要維度,因此在科學(xué)人物的設(shè)計中同樣重要。
科學(xué)圖形與其他圖形藝術(shù)作品的區(qū)別在于,數(shù)據(jù)的展現(xiàn)需要盡可能客觀地顯示。
“無用圖形”是指在圖中存在的所有不必要或令人困惑的視覺元素,這些元素不會改善信息(在最好的情況下)或增加混亂(在最壞的情況下)。
請記住,在科學(xué)中,圖形的信息和可讀性是最重要的方面,而美化只是一種選擇。
有許多工具可以讓您在創(chuàng)建圖形時更輕松,了解其中的一些工具可以為您節(jié)省大量時間。
本站其他內(nèi)容推薦
1、abacus worm okra put nightmarish caramba invitation pictograph service ciabatta
2、freight payable at(payable at中文翻譯,payable at是什么意思,payable at發(fā)音、用法及例句)
3、open market中文翻譯,open market是什么意思,open market發(fā)音、用法及例句
4、armor games中文翻譯,armor games是什么意思,armor games發(fā)音、用法及例句
7、取得成效怎么表達(dá),形容取得成效的成語,四字成語,四字詞語
8、快艇的英文,英語,speed-boat是什么意思,speed-boat中文翻譯,speed-boat怎么讀、發(fā)音、用法及例句
9、atmology是什么意思,atmology中文翻譯,atmology怎么讀、發(fā)音、用法及例句
10、疾病的英文,英語,malum是什么意思,malum中文翻譯,malum怎么讀、發(fā)音、用法及例句
11、phosphoresce是什么意思,phosphoresce中文翻譯,phosphoresce怎么讀、發(fā)音、用法及例句
版權(quán)聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任,不代表本網(wǎng)贊同其觀點(diǎn)和對其真實(shí)性負(fù)責(zé)。如因作品內(nèi)容、版權(quán)和其它問題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。