orcale可视化建立用户

by Sushrut Shivaswamy

通过Sushrut Shivaswamy

建立动态可视化的新方法 (A new way of building dynamic visualisations)

The Flux architecture gained popularity after Facebook adopted it. It’s a way of managing the state of React components so that the flow of the data through the app is unidirectional.

Facebook采纳Flux架构后,该架构开始流行。 这是一种管理React组件状态的方法,因此通过应用程序的数据流是单向的。

The advantages of this approach are that the app is comprised of few stateful components that passes state down to nested child components. A feature of React that really complements this approach to state management is that React allows us to write UI as a function of state. This means that, as state percolates down the app’s component hierarchy, components automatically change the view to reflect the changes in state.

这种方法的优势在于,该应用程序由几个有状态的组件组成,这些组件将状态向下传递给嵌套的子组件。 实际上,React的一个功能是对该状态管理方法的补充,它使我们能够将UI编写为状态的函数。 这意味着,随着状态渗透到应用程序的组件层次结构中,组件会自动更改视图以反映状态的变化。

JSX, a templating system used by React, allows for the creation of reusable single file components.

JSX是React使用的模板系统,允许创建可重用的单个文件组件。

It also lends itself really well to creating a demarcation between the structure of the DOM and the behaviours associated with it.

它还非常适合在DOM的结构和与其关联的行为之间创建界线。

  • JSX gives a clean view of the DOM structure that is more intuitive than the several lines of JavaScript required to create the same DOM structure.

    JSX给出了DOM结构的清晰视图,比创建相同DOM结构所需的几行JavaScript更直观。
  • The behaviours associated with the DOM structure — eventHandlers like onClick, onHover — are handled as member functions of the component.

    与DOM结构相关的行为(如onClick,onHover之类的eventHandlers)将作为组件的成员函数进行处理。
  • Any changes to the DOM structure require the user to call setState to change the state of the component instead of directly mutating the DOM. This makes it easier to debug the application, and it also ensures that the application is always in a defined state.

    对DOM结构的任何更改都要求用户调用setState来更改组件的状态,而不是直接更改DOM 。 这使调试应用程序变得更加容易,并且还确保了应用程序始终处于定义状态。

As the complexity of the app grew, however, the Flux approach also began to show its limitations.

但是,随着应用程序复杂性的提高,Flux方法也开始显示其局限性。

Few stateful components passing state down to child components seem fine for small apps. But, as the complexity of the component hierarchy increases, stateful components have to share state with each other.

对于小型应用程序,很少有状态组件将状态传递给子组件。 但是,随着组件层次结构的复杂性增加,有状态组件必须彼此共享状态。

While it is possible to share state across different components/classes in JavaScript through common variables or, preferably, the Observer pattern, as the number of components increases it becomes harder to maintain the application.

尽管可以通过公共变量或最好是Observer模式在JavaScript中的不同组件/类之间共享状态,但是随着组件数量的增加,维护应用程序变得更加困难。

The simplicity of components reacting to changes in state is muddled with the complexities of object-oriented design.

组件对状态变化做出React的简单性与面向对象设计的复杂性混为一谈。

图表-为什么很难制作? (Charts — why are they hard to make?)

The advances that web apps have benefited from have not changed the way that charting libraries are made. A chart is also a presentational component, and can technically be termed as UI. A chart is also composed of DOM elements that control its visual appearance.

Web应用程序受益的进步并未改变制图库的制作方式。 图表也是一个表示性组件,在技术上可以称为UI。 图表还由控制其外观的DOM元素组成。

However, charts differ in one key aspect: developers don’t treat SVG as DOM. Technically, the <svg> tag is not even an HTMLElement like other DOM elements, and sits in a separate namespace. SVG is only known for its ability to scale to any viewport size and maintain the resolution of the image at a constant level. That’s the extent to which most developers know about it.

但是,图表在一个关键方面有所不同:开发人员不会将SVG视为DOM。 从技术上讲, <s vg>标记甚至不是像其他DOM元素一样HTMLElement,而是位于单独的命名空间中。 SVG仅以能够缩放到任何视口大小并将图像分辨率保持在恒定水平的能力而闻名。 这就是大多数开发人员对此了解的程度。

Also the tags used to create an SVG image like <point>, &lt;rect />, and <polyline /> sound very “math like.” This makes developers shy away from how SVG structures actually work.

还有用于创建SVG图像的标签,例如<poi nt >, &l t; rect />, and <polyline />声音 非常“像数学”。 这使开发人员避开了SVG结构的实际工作方式。

Even those involved with applications that make heavy use of SVG are usually unaware of its inner workings. They utilise other libraries like snap or d3 to avoid the hassle of understanding what goes on under the hood.

即使是那些涉及大量使用SVG的应用程序的人员,通常也不会意识到其内部工作原理。 他们利用其他库(例如snap或d3)来避免了解幕后情况的麻烦。

Having avoided the underlying complexity of the SVG tag, it feels easy to model complex SVG constructs.

避免了SVG标签的潜在复杂性,为复杂的SVG结构建模很容易。

几何 (Geometry)

Consider a bar chart, for example.

例如,考虑一个条形图。

We traditionally adopt a cookie cutter approach and split a chart into parts:

传统上,我们采用千篇一律的方法,将图表分为几个部分:

  • x-axis

    X轴
  • y-axis

    y轴
  • bars

    酒吧

A seasoned developer would notice that the word axis was written twice in the above list. So lets create an abstraction layer called Axis that subclasses can inherit from.

经验丰富的开发人员会注意到单词轴在上面的列表中写了两次。 因此,让我们创建一个称为Axis的抽象层,子类可以从中继承。

To render the bars, we can create a separate class called Bar that utilises the scale provided by the axis class. As charts come in various shapes, it makes more sense to have an abstraction layer called Geometry that other classes can inherit from, namely Bar, Point, Line, and Area. As more complex charts are made, several new geometry types can be added to render different kinds of charts.

为了渲染条形图,我们可以创建一个单独的类Bar ,该类利用axis 提供比例尺 。 由于图表具有各种形状,因此有一个名为 其他类可以继承的 Geometry ,即 BarPointLineArea 。 制作更复杂的图表时,可以添加几种新的几何类型以呈现不同种类的图表。

Following the above methodology, a chart comprises three or more stateful components that utilise each others’ properties to render a meaningful chart.

按照上述方法,图表包含三个或更多有状态的组件,这些组件利用彼此的属性来呈现有意义的图表。

To update or enhance the chart, a developer is expected to know the state to mutate in each of these components. Since state is scattered across various components, even simple changes take a lot of time for new developers. The ordering of the state changes also becomes relevant.

要更新或增强图表,开发人员应了解这些组件中每个组件的状态变化 。 由于状态分散在各个组件中,因此即使是简单的更改,新开发人员也要花费大量时间。 状态更改的顺序也变得相关。

In the above example, the geometry utilises the scale of the axes. For the chart to be resized, the range of each axis has to be updated before updating the Geometry.

在上面的示例中,几何图形利用了轴的比例。 为了调整图表的大小,必须更新Geometry 之前更新每个轴的范围。

Not following this ordering will lead to visual artefacts — because the geometry would be distorted due to an invalid scale. At worst, failure to carry out this ordered sequence of operations could leave the chart in an undefined state.

不遵循此顺序将导致视觉伪影-因为几何将因比例尺无效而变形。 最坏的情况是,如果无法执行此有序的操作序列,则可能会使图表处于未定义状态。

Having cross-connectivity between charts further compounds this problem. The orchestration of state changes spans multiple charts/interacting components.

图表之间的交叉连接进一步加剧了这个问题。 状态更改的编排跨越多个图表/交互组件。

Having so many interacting components with directed relationships can also lead to cyclic dependencies between components.

具有如此直接关系的交互组件如此之多,也可能导致组件之间的循环依赖性。

This was a problem that plagued UI development frameworks as well until developing web applications with a single source of truth became the standard. The most influential library in directing the shift to single source of truth webapps was Redux.

在使用单一事实来源开发Web应用程序成为标准之前,这也是困扰UI开发框架的问题。 Redux是引导向单一来源的Webapp转移的最有影响力的库。

Note: The next section explains how using Redux makes web app development easier. Feel free to skip it if you already know about Redux.

注意 :下一部分将说明如何使用Redux简化Web应用程序的开发。 如果您已经了解Redux,请随时跳过。

Redux (Redux)

Redux is a library developed by Dan Abhramov. It helps ease the burden of developers by providing an easy way to maintain the state of an application.

Redux是由Dan Abhramov开发的库。 通过提供一种维护应用程序状态的简便方法,它有助于减轻开发人员的负担。

Redux introduced the concept of a state store that acted as the single source of truth for the entire application. Instead of components directly mutating the state, each component would dispatch an action that would commit a change to the unified state store.

Redux引入了状态存储的概念,该状态存储充当整个应用程序的单一事实来源。 代替直接改变状态的组件,每个组件将调度一个动作,该动作将更改提交给统一状态存储。

Each action was identified by a unique enum that would be logged every time a change was committed to the state store. This made it easy to track how the state store was being mutated.

每个动作都由一个唯一的枚举标识, 每次更改提交给状态存储区时,该枚举都会记录下来。 这使得跟踪状态存储的更改方式变得很容易。

Once a change was committed to the state store, the new state would percolate down the component hierarchy. Components would re-render or ignore the change depending on whether the part of the state that changed was relevant to them. Components could no longer mutate the state in isolation. It had to be at a global level.

一旦将更改提交给状态存储,新状态就会渗透到组件层次结构中。 组件将重新呈现或忽略更改,具体取决于更改的状态部分是否与它们相关。 组件不再可以孤立地更改状态。 它必须在全球范围内。

The main purpose is to isolate state management from side effects like rendering and fetching data from the server. Always leave the application in a defined state.

主要目的是将状态管理与副作用隔离开,例如从服务器渲染和获取数据。 始终使应用程序处于定义状态。

This lays the foundation for a deterministic view render. Given a sequence of state changes, you will always end up with the same rendered view.

这为确定性视图渲染奠定了基础。 给定一系列状态更改,您将总是最终获得相同的渲染视图。

This level of deterministic view rendering is especially helpful for offline applications. Here, the sequence of state mutations that happen while user is offline can be stored and replayed when connectivity is re-established to get back the same view.

这种确定性的视图呈现级别对于脱机应用程序特别有用。 在这里,当用户脱机时发生的状态突变序列可以被存储并在重新建立连接以返回相同视图时重放。

The success of of the React-Redux model spawned a number of other libraries like Vue and Cycle, as well as several other implementations of the state store like MobX and Vuex.

React-Redux模型的成功产生了许多其他库,例如Vue和Cycle ,以及状态存储的其他几种实现,例如MobX和Vuex 。

深入了解SVG (A closer look at SVG)

SVG stands for scalable vector graphics. The svg tag can optionally house various kinds of geometry, which expose a number of DOM attributes.

SVG代表可缩放的矢量图形。 svg标签可以选择容纳各种几何图形,这些几何图形可以显示许多DOM属性。

Circle: <circle />

<circle />

Attributes:

属性:

  • cx: x offset of circle in viewport

    cx :视口中圆的x偏移量

  • cy: y offset of circle in viewport

    cy :视口中圆的y偏移

  • r : radius of circle

    r :圆半径

Polyline: <polyline />

折线<polyline />

Attributes:

属性:

  • points: array of points (x, y) through which a line is drawn.

    points:画一条线的点(x,y)的数组。

Polygon: <polygon />

多边形<polygon />

Attributes:

属性:

  • points: array of points (x, y) to construct a polygon.

    points :用于构造多边形的点(x,y)的数组。

Text: <text />

文字<text />

Attributes:

属性:

  • x: x offset of text in viewport

    x :视口中文本的x偏移量

  • y: y offset of text in viewport

    y :视口中文本的y偏移量

  • innerText: The text to show.

    innerText :要显示的文本。

Many more geometry types are available in the SVG standard, but for the purposes of charts, the above will suffice. These geometric elements can also be styled with normal CSS.

SVG标准中提供了更多的几何类型,但是出于图表目的,上述内容就足够了。 这些几何元素也可以使用普通CSS设置样式。

寻找一座桥 (Finding a bridge)

These are the guiding principles behind modern web application development and development of charting libraries. Let’s try to isolate where developing charting libraries differs from web applications:

这些是现代Web应用程序开发和图表库开发背后的指导原则。 让我们尝试隔离开发图表库和Web应用程序的地方:

  • web apps are composed of DOM nodes. Charts are composed of SVG geometries.

    Web应用程序由DOM节点组成。 图表由SVG几何组成。

  • web apps can be broken down into reusable sections of DOM that can be modelled as components. Charts aren’t modelled as reusable set of geometries.

    Web应用程序可以细分为DOM的可重用部分,这些部分可以建模为组件。 图表未建模为可重复使用的一组几何图形。

  • web app frameworks are always coupled with a templating engine so that DOM structure can be modelled in markup and the behaviours can be separated from it and written in JavaScript. Charts have no such framework available.

    Web应用程序框架始终与模板引擎结合使用,以便可以在标记中对DOM结构进行建模,并可以将行为与标记分离并用JavaScript编写。 图表没有此类可用框架。

  • web app frameworks allow for a state store to be incorporated through the use of a plugin. Charts are usually modelled as stateful components.

    Web应用程序框架允许通过使用插件来合并状态存储。 图表通常建模为有状态的组件。

重塑图表复杂度 (Remodelling chart complexity)

A chart is a visual tool that showcases variation across fields in the data using geometry.

图表是一种可视化工具,可显示使用几何图形的数据中各个字段的变化。

So how does that work?

那如何运作?

Looking at the chart above, what do we see? Circles offset in the viewport based on fields present in the data.

查看上图,我们看到了什么? 根据数据中存在的字段,视口中的圆偏移。

What else?

还有什么?

  • Ticks offset along the bottom based on a field in the data.

    刻度线根据数据中的字段沿底部偏移。
  • Text labels offset along the bottom based on a field in the data.

    文本标签基于数据中的字段沿底部偏移。
  • Same as above along the left side of the chart.

    与图表左侧的上方相同。

Let’s break it down to the level of geometries.

让我们将其分解为几何级别。

How do we render the circles in the scatterplot?

我们如何在散点图中绘制圆圈?

<circle cx=”horsepowerScale()” cy=”milesPerGallonScale()” cr=”const” />

<circle cx=”horsepowerScale()” cy=”milesPerGallonScale()” cr=”const” />

What about the axes? X-Axes: Text + Ticks

轴呢? X轴:文字+刻度

<text x=”horsepowerScale()” y=”0”>{{ text value }}&lt;/text>

<text x=”horsepowerScale()” y=”0”>{{ text value }}& lt; / text>

<tick x=”horsepwerScale()” y=”0” />

<tick x=”horsepwerScale()” y=”0” />

There is a similar SVG structure for the y-axis, except that the scale function changes and the x, y fields are inverted.

y轴具有类似的SVG结构,除了比例函数发生变化并且x,y字段被反转。

The common theme above is that the chart is viewed as a meaningful arrangement of geometry:

上面的共同主题是, 图表被视为有意义的几何排列:

  • each geometry in the SVG namespace exposes visual attributes

    SVG名称空间中的每个几何都公开了视觉属性
  • the value of these attributes is bound to a calculated value

    这些属性的值绑定到计算值
  • the calculated value depends on the scale

    计算值取决于比例尺
  • the scale depends on a field in the data and the range

    小数位数取决于数据中的字段和范围

规模是多少? (What is a scale?)

A scale is a function that maps data to a position in the viewport.

比例尺是一种将数据映射到视口中某个位置的功能。

What is the input to scale?

规模输入是什么?

  • the domain of the field

    领域的领域
  • the length of the viewport to map to

    要映射到的视口的长度

Let R be the length of viewport and D be the domain of the data.

R为视口长度, D为数据域。

  • Then we can define a scaling function S as:

    然后我们可以将缩放函数S定义为:

  • S = f(D, R) + b

    S = f(D,R)+ b

where b is a constant.

其中b是常数。

图表需要多少个刻度? (How many scales does a chart need to have?)

If you’re thinking two, then you’re wrong.

如果您想两个,那就错了。

Scale doesn’t exist only along x- and y-axes. The axes themselves are only present in a chart as visual anchors so that users can line up data variations along multiple dimensions.

缩放不仅沿x轴和y轴存在。 轴本身仅在图表中显示为可视锚点,以便用户可以沿多个维度排列数据变化。

The axis is just geometry that is rendered using a scale.

轴只是使用比例尺渲染的几何。

有多少个尺寸? (How many dimensions are there?)

It’s not two. The viewport is two-dimensional but that has nothing to do with the dimensionality of the chart. The dimensionality of a chart is defined by the number of scaling functions used.

不是两个 视口是二维的,但与图表的尺寸无关。 图表的维数由使用的缩放功能的数量定义。

The overarching concept comprises of two simple terms: Geometry and Scale.

总体概念由两个简单术语组成: GeometryScale

Each geometry exposes visual attributes that control its appearance.

每种几何都公开控制其外观的视觉属性。

The value of these attributes can be hooked up to scaling functions. The scaling function is tied to a particular field in the data.

这些属性的值可以连接到缩放函数。 缩放功能与数据中的特定字段相关。

This lends itself to the idea that every visual attribute in a chart can only be tied to one field in the data table.

这使自己的想法是,图表中的每个视觉属性只能与数据表中的一个字段相关联。

Given this decomposition of charts we can model the scatter plot above as follows:

鉴于图表的分解,我们可以如下对散点图进行建模:

The field Horsepower is used to create a scaling function called horsepowerScale().

字段Horsepower用于创建称为horsepowerScale()的缩放函数。

The field Acceleration is used to create a scaling function called accelerationScale().

字段Acceleration用于创建一个称为accelerationScale()的缩放函数。

Since we are not varying the size of the circles, only two scaling functions are required.

由于我们没有改变圆的大小,因此仅需要两个缩放函数。

Any circle i in the scatterplot can be represented as

散点图中的任何圆圈i都可以表示为

<circle cx="horsepowerScale(ti)" cy="accelerationScale(ti)" cr="5" />

<circle cx="horsepowerScale(ti)" cy="accelerationScale(ti)" cr="5" />

where ti is the ith tuple in the Datatable.

其中ti是数据表中的第i个元组。

Given that only two scaling functions were used, the dimensionality of the above chart becomes two.

假设仅使用了两个缩放函数,则上图的维数将变为2。

If we also modulated the size of each circle, using a scaling function tied to another field, then the dimensionality would be three.

如果我们还使用绑定到另一个字段的缩放函数来调制每个圆的大小,则维数将为3。

Doing so would result in what is known as a “bubble chart”.

这样做将导致所谓的“气泡图”。

图形语法 (Grammar of Graphics)

This is similar to the Grammar of Graphics (GOG) approach, where every chart is defined by a mark (geometry) and the visual encodings used by the mark.

这类似于图形语法(GOG)的方法,在该方法中,每个图表都由一个标记(几何形状)和该标记使用的可视编码定义。

In a GOG approach the scatterplot would be represented as:

在GOG方法中,散点图将表示为:

{
mark: 'circle',
encoding: {
x: 'horsepower',
y: 'acceleration'
}
}

Notice that there is a one-to-one mapping between the encoding of a GOG geometry and the visual attributes exposed by the geometry in SVG.

请注意,GOG几何的编码与SVG中的几何公开的视觉属性之间存在一对一的映射

The axis can also be rendered similarly:

轴也可以类似地渲染:

  • The x-axis is a tick geometry with its x-offset attribute tied to horsepowerScale() and its y-offset set to 0.

    x轴是刻度几何,其x-offset属性与 horsepowerScale()及其y偏移设置为0。

  • The y-axis is a tick geometry with its y-offset attribute tied to accelerationScale() and its x-offset set to 0.

    y轴是刻度几何,其y-offset属性绑定到accelerationScale() ,其x-offset设置为0。

To render the scatterplot with all its elements, the following snippet of code would suffice:

要渲染散点图及其所有元素,以下代码片段就足够了:

Decomposition of charts into an association between visual attributes and a scaling function allows us to view a chart as a web app.

将图表分解为视觉属性和缩放功能之间的关联,使我们可以将图表作为Web应用程序查看。

Web Application frameworks model UI as a function of state.

Web应用程序框架将UI建模为状态的函数。

Charts Frameworks should model geometry as a function of scale.

图表框架应将几何建模为比例函数。

So the idea that makes web applications easy to develop can easily be extended to creating charts:

因此,使Web应用程序易于开发的想法可以轻松地扩展到创建图表:

  • Initially, tabular data is supplied as input.

    最初,提供表格数据作为输入。
  • For every field in the Data array, a scaling function is created. The scaling function selectively recomputes values when a field in the column is tied to changes. The same scaling function is percolated throughout the application.

    对于数据数组中的每个字段,都会创建一个缩放函数。 当列中的字段与更改绑定在一起时,缩放功能有选择地重新计算值。 整个应用程序都渗透了相同的缩放功能。
  • Every geometry is modelled as a component that exposes visual attributes.

    每个几何图形都被建模为公开视觉属性的组件。
  • The value of these visual attributes is tied to a scaling function that reacts to changes in data.

    这些视觉属性的值与对数据变化做出React的缩放函数相关。
  • The collections of geometry can be represented in markup using a templating engine of choice like hyperHTML, mustache, or handlebars. Ideally, the templating engine should be introduced as a plugin so that we can avoid writing bindings for different libraries like React and Angular.

    可以使用选择的模板引擎(例如hyperHTML,胡须或车把)在标记中表示几何图形的集合。 理想情况下,应将模板引擎作为插件引入,这样我们就可以避免为React和Angular等不同库编写绑定。
  • The state store that selectively computes scales should also be introduced as a plugin.

    选择性计算比例的状态存储也应作为插件引入。

Let’s see what putting a chart together using the above principles would look like:

让我们看看使用上述原理将图表组合在一起的样子:

We are using React as a templating engine and Redux as the state store in the above example.

在上面的示例中,我们使用React作为模板引擎,使用Redux作为状态存储。

The above approach is just a rough implementation of what a framework that can model charts as webapps would would like like.

上面的方法只是对可以将图表建模为Web应用程序的框架想要的框架的粗略实现。

Notice the separation of the templating engine and state store from the actual rendering logic.

注意,模板引擎和状态存储与实际渲染逻辑是分开的。

最后一点 (Final points)

Ideally, geometries/charts that we create should be available as components in the framework of the user’s choice along with their state store. If it seems unthinkable that something like this could even be done, stay calm. It’s been done before.

理想情况下,我们创建的几何图形/图表应随用户的状态存储一起作为用户选择的框架中的组件提供。 如果似乎无法做到这样的事情,请保持冷静。 之前已经完成了。

SkateJS is a compiler that creates web components but allows user to switch internal rendering engines.

SkateJS是可创建Web组件但允许用户切换内部渲染引擎的编译器。

Users can choose between React, Preact, lit-html or extend the Renderer interface to write their own. The default renderer just mutates the DOM directly.

用户可以在React,Preact,lit-html之间进行选择,或扩展Renderer界面以编写自己的界面。 默认渲染器仅直接更改DOM。

We can be even more ambitious with what we choose once we have synchronous rendering coupled with state management.

一旦拥有同步渲染和状态管理功能,我们就可以对选择的东西更加抱负。

Imagine a TickProvider component that allows for rendering only small clusters of geometry in a given animation frame as well as allowing us to identify bottlenecks in our rendering pipeline.

想象一下一个TickProvider组件, TickProvider允许在给定的动画帧中渲染几何的小簇,并且允许我们识别渲染管道中的瓶颈。

Given that a chart is meaningful arrangement of geometry, it follows that meaningful clusters of geometry should render together.

鉴于图表是几何的有意义的排列方式,因此有意义的几何簇应一起呈现。

In the scatter plot example, for every group of circles that render, the corresponding sections of the x/y axis geometry should also render simultaneously.

在散点图示例中,对于渲染的每组圆,x / y轴几何的相应部分也应同时渲染。

If we break the rendering into chunks, where each chunk consists of one meaningful cluster of geometry as modelled above, we can support beautiful transitions that add to the visual appeal of the chart.

如果将渲染分成多个块,每个块都由一个有意义的几何簇组成(如上模型所示),则我们可以支持漂亮的过渡效果,从而增加图表的视觉吸引力。

Another advantage of a TickProvider is that we can profile and ensure that each cluster of geometry renders completely in the time allotted per tick. This will help avoid freezing of the UI when the geometry count to be rendered is very large. Instead of running a render loop over the entire geometry collection, we could batch the render calls in sync with the animation frames.

TickProvider另一个优点是我们可以剖析并确保每个几何TickProvider在每个刻度分配的时间内完全呈现。 当要渲染的几何图形数量很大时,这将有助于避免冻结UI。 无需在整个几何图形集合上运行渲染循环,我们可以与动画帧同步批处理渲染调用。

We can also break down the calculation of visual attribute values.

我们还可以分解视觉属性值的计算。

Consider a data table that has N fields being used to render dashboards with the above approach.

考虑具有上述方法的具有N个字段的数据表用于呈现仪表板。

Since we are using a centralised state store, we can calculate the values of the N scaling function and memorize them. They only need to be re-calculated when the associated data table field changes.

由于我们使用的是集中式状态存储,因此我们可以计算N缩放函数的值并将其存储起来。 仅在关联的数据表字段更改时才需要重新计算它们。

Also, consider the equation below that computes the value of m visual attributes based on the scaling functions.

此外,请考虑以下方程式,该方程式基于缩放函数计算m个视觉属性的值。

The 0th value for a visual attribute V, that is bound to field 0 of N, can be calculated as follows:

可视属性V的第0个值(绑定到N的字段0)可以如下计算:

V(0) = S(d0, R) + b0

V(0)= S(d0,R)+ b0

  • where d0 is the 0th data tuple from the data table

    其中d0是数据表中的第0个数据元组
  • R is the range supplied as a prop to the component

    R是作为道具提供的范围
  • b0 is constant

    b0是常数

If we write a series of such equations together we see this:

如果我们一起编写一系列这样的方程式,我们将看到:

V(0) = S(d0, R) + b0

V(0)= S(d0,R)+ b0

V(1) = S(d1, R) + b1

V(1)= S(d1,R)+ b1

V(2) = S(d2, R) + b2

V(2)= S(d2,R)+ b2

..

..

V(m) = S(dm, R) + bm

V(m)= S(dm,R)+ bm

The scaling function itself can be expressed as a linear equation. We have a set of linear equations that can be batch computed to calculate the value for visual attributes.

比例函数本身可以表示为线性方程。 我们有一组线性方程式,可以批量计算以计算视觉属性的值。

How so?

为何如此?

The above arrangement looks suspiciously like a matrix.

上述安排可疑地看起来像一个矩阵。

Computations in the browser are slow, but matrix computations can be sped up by leveraging GPU acceleration.

浏览器中的计算速度很慢,但是可以利用GPU加速来加快矩阵计算的速度。

Modelling the chart as geometry as a function of scale could therefore help us render charts much faster, as well handle larger volumes of data with a fast first render.

因此,将图表建模为几何图形与比例的函数可以帮助我们更快地绘制图表,并通过快速的首次渲染处理大量数据。

Data Visualisation is something that help us glean insights from large quantities of data. The impact that it has on decision making is slowly going up with multiple organisations looking to make data driven decisions.

数据可视化可以帮助我们从大量数据中收集见解。 它对决策的影响正在逐步与多家寻求数据驱动决策的组织密切相关。

Safe to say, we need a more robust, accessible and maintainable way of developing visualisations.

可以肯定地说,我们需要一种更强大,可访问和可维护的可视化开发方式。

What do you think?

你怎么看?

翻译自: https://www.freecodecamp.org/news/a-new-way-of-building-dynamic-visualisations-5c732091a3c1/

orcale可视化建立用户

查看全文
如若内容造成侵权/违法违规/事实不符,请联系编程学习网邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!

相关文章

  1. Graph Visualization and Navigation in Information Visualization: A Survey 译文

    图像可视化和信息可视化导航&#xff1a;文献综述Ivan Herman, Member, IEEE Computer Society, Guy Melancon, and M. Scott Marshall 摘要&#xff1a;这是一个关于图形可视化和导航技术的调查&#xff0c;同时这些技术也在信息可视化中应用。图形出现在很多应用中&#xff…...

    2024/4/20 15:24:10
  2. dotnet 常用库

    本文由 lonelyrains出品&#xff0c;转载请注明出处。 文章链接&#xff1a; https://bodhi.blog.csdn.net/article/details/116054714 vx: blade170103 工作背景是工业自动化&#xff0c;所以不常用与web相关的ui框架&#xff0c;比如electron、vue.js、angular、react、boo…...

    2024/4/20 15:24:10
  3. 埋双眼皮可以冰敷吗

    ...

    2024/4/21 14:28:25
  4. 埋双眼皮的过程视频

    ...

    2024/4/21 14:28:25
  5. 连续式脸长割脸适合什么样的六点埋线双眼皮视频

    ...

    2024/4/21 14:28:23
  6. 连续埋线双眼皮图解

    ...

    2024/4/21 14:28:23
  7. 例假期间做例假前可以做连续埋线连续埋线双眼皮视频

    ...

    2024/4/21 14:28:21
  8. 李平珍割的李平珍例假几天可以割例假期间不能割例假期间能做例假期间能做双眼皮吗

    ...

    2024/4/21 14:28:21
  9. 兰州双眼皮时光细心

    ...

    2024/4/21 14:28:19
  10. 使用activeMq发送短信(短信接口是山东鼎信)

    一、引入依赖 <!--activemq依赖--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-activemq</artifactId></dependency><dependency><groupId>javax.jms</groupId><…...

    2024/4/21 14:28:19
  11. 地图行业应用简介

    图吧应用案例应用概览[url=http://hy.mapbar.com/]公交API详解[/url]随着政府职能向服务型政府转变,便民利民工程在各级政府中逐步实施。而交通便利是服务政府的工程的重要表现。导航的应用提高了出行质量。 “江阴掌上公交”手机客户端是“江阴公交乘客出行信息服务系统”中…...

    2024/4/21 14:28:17
  12. 9 用户模块开发

    本小节&#xff0c;我们来完成最后一个模块--用户模块的开发。 用户模块一共有5个页面&#xff0c;分别是登录页面&#xff0c;注册页面&#xff0c;用户操作页面&#xff0c;收藏职位页面以及投递记录页面&#xff0c;先在src/view/目录下&#xff0c;创建这五个页面的视图文件…...

    2024/4/21 14:28:17
  13. 我的安卓之路

    1、Android 进阶 一步一步使用 DialogFragment 封装链式调用 DialogEventBus3.0实用教程Java多线程自定义 View 实战&#xff08;一&#xff09;做一个简单的进度条Dagger2 、 MVP的简单封装我的第一个开源项目我项目中会用到的开源项目&#xff08;都是精品&#xff09; 持续…...

    2024/4/21 14:28:16
  14. Java开发快递物流项目(6)

    前端系统&#xff08;AngularJS &#xff09;、用户注册 短信平台、Redis 、MQ 一.前端AngularJS 1)ng-app 在任何元素上使用&#xff0c;代表 angular 应用作用域 ng-controller 指定控制器 ng-model 指定模型 ng-bind 或者 {{属性名}} 进行属性取值用于显示 2) 什么是双向数…...

    2024/4/21 14:28:14
  15. Java用户注册服务器发送短信验证码功能实现

    <–start–> 当客户端发送了http的请求给服务器之后&#xff0c;服务器获取手机号然后调用短信平台给该手机号发送短信验证码。 给服务器发送请求的js代码&#xff1a; <script type"text/javascript">// 模块定义 var signupApp angular.module(&qu…...

    2024/4/21 14:28:14
  16. 来月经能不能做来月经能做兰州那里双眼皮做的好

    ...

    2024/4/21 14:28:12
  17. 简单实现手机号验证码注册功能

    jsp部分&#xff1a;是一个普通的<input>标签 <input type"tel" name"unumber"id"phone" placeholder"请输入手机号" ><input type"tel" name"input_code" id"code" placeholder"…...

    2024/4/21 14:28:11
  18. angularjs实现计时器

    为什么80%的码农都做不了架构师&#xff1f;>>> html <div ng-controller"passwordController"><div class"col-md-12"><input type"text" ng-model"verificationCode" class"form-control" pla…...

    2024/4/21 14:28:10
  19. 60秒倒计时

    <!DOCTYPE html><html> <head> <meta charset"utf-8" /> <title>60秒倒计时</title> <script type"text/javascript" src"../js/angular.min.js" ></script> <script type"text/javasc…...

    2024/4/20 15:24:21
  20. ionic4.x仿京东 - 8.2.注册-验证验证码

    一、倒计时 1.倒计时 【register-step2.page.ts】 【register-step2.page.html】将num渲染到页面上 【register-step2.page.ts】初始化的时候调用倒计时方法 2.倒计时完善 倒计时为0时,此时界面: 完善:倒计时为0,按钮变成”发送验证码“,并可点击 【register-step…...

    2024/4/25 8:11:49

最新文章

  1. 使用项目管理软件有效控制项目质量

    项目管理中的质量控制&#xff0c;是指团队实施策略以确保可交付成果或产品满足最终用户要求。质量控制是项目管理计划的一个要素&#xff0c;这是一个迭代过程&#xff0c;可以节省时间和资源&#xff0c;同时产生高质量的产品和服务。 质量控制的四种类型 这四种类型的质量…...

    2024/4/25 21:09:39
  2. 梯度消失和梯度爆炸的一些处理方法

    在这里是记录一下梯度消失或梯度爆炸的一些处理技巧。全当学习总结了如有错误还请留言&#xff0c;在此感激不尽。 权重和梯度的更新公式如下&#xff1a; w w − η ⋅ ∇ w w w - \eta \cdot \nabla w ww−η⋅∇w 个人通俗的理解梯度消失就是网络模型在反向求导的时候出…...

    2024/3/20 10:50:27
  3. 谷粒商城实战(008 缓存)

    Java项目《谷粒商城》架构师级Java项目实战&#xff0c;对标阿里P6-P7&#xff0c;全网最强 总时长 104:45:00 共408P 此文章包含第151p-第p157的内容 简介 数据库承担落盘&#xff08;持久化&#xff09;工作 拿map做缓存 这种是本地缓存&#xff0c;会有一些问题 分布…...

    2024/4/23 6:23:00
  4. STM32实现软件SPI对W25Q64内存芯片实现读写操作

    先看看本次实验的成果吧&#xff1a; 这么简单的一个程序&#xff0c;我学习了一个星期左右&#xff0c;终于把所有的关节都打通了。所有代码都能什么都不看背着敲出来了。为了使自己的记忆更为清晰&#xff0c;特意总结了一个思维导图&#xff0c;感觉自己即便是日后忘记了看一…...

    2024/4/25 7:00:58
  5. 【外汇早评】美通胀数据走低,美元调整

    原标题:【外汇早评】美通胀数据走低,美元调整昨日美国方面公布了新一期的核心PCE物价指数数据,同比增长1.6%,低于前值和预期值的1.7%,距离美联储的通胀目标2%继续走低,通胀压力较低,且此前美国一季度GDP初值中的消费部分下滑明显,因此市场对美联储后续更可能降息的政策…...

    2024/4/25 11:51:20
  6. 【原油贵金属周评】原油多头拥挤,价格调整

    原标题:【原油贵金属周评】原油多头拥挤,价格调整本周国际劳动节,我们喜迎四天假期,但是整个金融市场确实流动性充沛,大事频发,各个商品波动剧烈。美国方面,在本周四凌晨公布5月份的利率决议和新闻发布会,维持联邦基金利率在2.25%-2.50%不变,符合市场预期。同时美联储…...

    2024/4/25 18:39:24
  7. 【外汇周评】靓丽非农不及疲软通胀影响

    原标题:【外汇周评】靓丽非农不及疲软通胀影响在刚结束的周五,美国方面公布了新一期的非农就业数据,大幅好于前值和预期,新增就业重新回到20万以上。具体数据: 美国4月非农就业人口变动 26.3万人,预期 19万人,前值 19.6万人。 美国4月失业率 3.6%,预期 3.8%,前值 3…...

    2024/4/25 18:38:39
  8. 【原油贵金属早评】库存继续增加,油价收跌

    原标题:【原油贵金属早评】库存继续增加,油价收跌周三清晨公布美国当周API原油库存数据,上周原油库存增加281万桶至4.692亿桶,增幅超过预期的74.4万桶。且有消息人士称,沙特阿美据悉将于6月向亚洲炼油厂额外出售更多原油,印度炼油商预计将每日获得至多20万桶的额外原油供…...

    2024/4/25 18:39:23
  9. 【外汇早评】日本央行会议纪要不改日元强势

    原标题:【外汇早评】日本央行会议纪要不改日元强势近两日日元大幅走强与近期市场风险情绪上升,避险资金回流日元有关,也与前一段时间的美日贸易谈判给日本缓冲期,日本方面对汇率问题也避免继续贬值有关。虽然今日早间日本央行公布的利率会议纪要仍然是支持宽松政策,但这符…...

    2024/4/25 18:39:22
  10. 【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响

    原标题:【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响近日伊朗局势升温,导致市场担忧影响原油供给,油价试图反弹。此时OPEC表态稳定市场。据消息人士透露,沙特6月石油出口料将低于700万桶/日,沙特已经收到石油消费国提出的6月份扩大出口的“适度要求”,沙特将满…...

    2024/4/25 18:39:22
  11. 【外汇早评】美欲与伊朗重谈协议

    原标题:【外汇早评】美欲与伊朗重谈协议美国对伊朗的制裁遭到伊朗的抗议,昨日伊朗方面提出将部分退出伊核协议。而此行为又遭到欧洲方面对伊朗的谴责和警告,伊朗外长昨日回应称,欧洲国家履行它们的义务,伊核协议就能保证存续。据传闻伊朗的导弹已经对准了以色列和美国的航…...

    2024/4/25 18:39:20
  12. 【原油贵金属早评】波动率飙升,市场情绪动荡

    原标题:【原油贵金属早评】波动率飙升,市场情绪动荡因中美贸易谈判不安情绪影响,金融市场各资产品种出现明显的波动。随着美国与中方开启第十一轮谈判之际,美国按照既定计划向中国2000亿商品征收25%的关税,市场情绪有所平复,已经开始接受这一事实。虽然波动率-恐慌指数VI…...

    2024/4/25 16:48:44
  13. 【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试

    原标题:【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试美国和伊朗的局势继续升温,市场风险情绪上升,避险黄金有向上突破阻力的迹象。原油方面稍显平稳,近期美国和OPEC加大供给及市场需求回落的影响,伊朗局势并未推升油价走强。近期中美贸易谈判摩擦再度升级,美国对中…...

    2024/4/25 13:39:44
  14. 【原油贵金属早评】市场情绪继续恶化,黄金上破

    原标题:【原油贵金属早评】市场情绪继续恶化,黄金上破周初中国针对于美国加征关税的进行的反制措施引发市场情绪的大幅波动,人民币汇率出现大幅的贬值动能,金融市场受到非常明显的冲击。尤其是波动率起来之后,对于股市的表现尤其不安。隔夜美国股市出现明显的下行走势,这…...

    2024/4/25 18:39:16
  15. 【外汇早评】美伊僵持,风险情绪继续升温

    原标题:【外汇早评】美伊僵持,风险情绪继续升温昨日沙特两艘油轮再次发生爆炸事件,导致波斯湾局势进一步恶化,市场担忧美伊可能会出现摩擦生火,避险品种获得支撑,黄金和日元大幅走强。美指受中美贸易问题影响而在低位震荡。继5月12日,四艘商船在阿联酋领海附近的阿曼湾、…...

    2024/4/25 18:39:16
  16. 【原油贵金属早评】贸易冲突导致需求低迷,油价弱势

    原标题:【原油贵金属早评】贸易冲突导致需求低迷,油价弱势近日虽然伊朗局势升温,中东地区几起油船被袭击事件影响,但油价并未走高,而是出于调整结构中。由于市场预期局势失控的可能性较低,而中美贸易问题导致的全球经济衰退风险更大,需求会持续低迷,因此油价调整压力较…...

    2024/4/25 0:00:17
  17. 氧生福地 玩美北湖(上)——为时光守候两千年

    原标题:氧生福地 玩美北湖(上)——为时光守候两千年一次说走就走的旅行,只有一张高铁票的距离~ 所以,湖南郴州,我来了~ 从广州南站出发,一个半小时就到达郴州西站了。在动车上,同时改票的南风兄和我居然被分到了一个车厢,所以一路非常愉快地聊了过来。 挺好,最起…...

    2024/4/25 4:19:21
  18. 氧生福地 玩美北湖(中)——永春梯田里的美与鲜

    原标题:氧生福地 玩美北湖(中)——永春梯田里的美与鲜一觉醒来,因为大家太爱“美”照,在柳毅山庄去寻找龙女而错过了早餐时间。近十点,向导坏坏还是带着饥肠辘辘的我们去吃郴州最富有盛名的“鱼头粉”。说这是“十二分推荐”,到郴州必吃的美食之一。 哇塞!那个味美香甜…...

    2024/4/25 18:39:14
  19. 氧生福地 玩美北湖(下)——奔跑吧骚年!

    原标题:氧生福地 玩美北湖(下)——奔跑吧骚年!让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 啊……啊……啊 两…...

    2024/4/25 18:39:12
  20. 扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!

    原标题:扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!扒开伪装医用面膜,翻六倍价格宰客!当行业里的某一品项火爆了,就会有很多商家蹭热度,装逼忽悠,最近火爆朋友圈的医用面膜,被沾上了污点,到底怎么回事呢? “比普通面膜安全、效果好!痘痘、痘印、敏感肌都能用…...

    2024/4/25 2:10:52
  21. 「发现」铁皮石斛仙草之神奇功效用于医用面膜

    原标题:「发现」铁皮石斛仙草之神奇功效用于医用面膜丽彦妆铁皮石斛医用面膜|石斛多糖无菌修护补水贴19大优势: 1、铁皮石斛:自唐宋以来,一直被列为皇室贡品,铁皮石斛生于海拔1600米的悬崖峭壁之上,繁殖力差,产量极低,所以古代仅供皇室、贵族享用 2、铁皮石斛自古民间…...

    2024/4/25 18:39:00
  22. 丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者

    原标题:丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者【公司简介】 广州华彬企业隶属香港华彬集团有限公司,专注美业21年,其旗下品牌: 「圣茵美」私密荷尔蒙抗衰,产后修复 「圣仪轩」私密荷尔蒙抗衰,产后修复 「花茵莳」私密荷尔蒙抗衰,产后修复 「丽彦妆」专注医学护…...

    2024/4/25 13:19:01
  23. 广州械字号面膜生产厂家OEM/ODM4项须知!

    原标题:广州械字号面膜生产厂家OEM/ODM4项须知!广州械字号面膜生产厂家OEM/ODM流程及注意事项解读: 械字号医用面膜,其实在我国并没有严格的定义,通常我们说的医美面膜指的应该是一种「医用敷料」,也就是说,医用面膜其实算作「医疗器械」的一种,又称「医用冷敷贴」。 …...

    2024/4/25 18:38:58
  24. 械字号医用眼膜缓解用眼过度到底有无作用?

    原标题:械字号医用眼膜缓解用眼过度到底有无作用?医用眼膜/械字号眼膜/医用冷敷眼贴 凝胶层为亲水高分子材料,含70%以上的水分。体表皮肤温度传导到本产品的凝胶层,热量被凝胶内水分子吸收,通过水分的蒸发带走大量的热量,可迅速地降低体表皮肤局部温度,减轻局部皮肤的灼…...

    2024/4/25 18:38:57
  25. 配置失败还原请勿关闭计算机,电脑开机屏幕上面显示,配置失败还原更改 请勿关闭计算机 开不了机 这个问题怎么办...

    解析如下&#xff1a;1、长按电脑电源键直至关机&#xff0c;然后再按一次电源健重启电脑&#xff0c;按F8健进入安全模式2、安全模式下进入Windows系统桌面后&#xff0c;按住“winR”打开运行窗口&#xff0c;输入“services.msc”打开服务设置3、在服务界面&#xff0c;选中…...

    2022/11/19 21:17:18
  26. 错误使用 reshape要执行 RESHAPE,请勿更改元素数目。

    %读入6幅图像&#xff08;每一幅图像的大小是564*564&#xff09; f1 imread(WashingtonDC_Band1_564.tif); subplot(3,2,1),imshow(f1); f2 imread(WashingtonDC_Band2_564.tif); subplot(3,2,2),imshow(f2); f3 imread(WashingtonDC_Band3_564.tif); subplot(3,2,3),imsho…...

    2022/11/19 21:17:16
  27. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机...

    win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”问题的解决方法在win7系统关机时如果有升级系统的或者其他需要会直接进入一个 等待界面&#xff0c;在等待界面中我们需要等待操作结束才能关机&#xff0c;虽然这比较麻烦&#xff0c;但是对系统进行配置和升级…...

    2022/11/19 21:17:15
  28. 台式电脑显示配置100%请勿关闭计算机,“准备配置windows 请勿关闭计算机”的解决方法...

    有不少用户在重装Win7系统或更新系统后会遇到“准备配置windows&#xff0c;请勿关闭计算机”的提示&#xff0c;要过很久才能进入系统&#xff0c;有的用户甚至几个小时也无法进入&#xff0c;下面就教大家这个问题的解决方法。第一种方法&#xff1a;我们首先在左下角的“开始…...

    2022/11/19 21:17:14
  29. win7 正在配置 请勿关闭计算机,怎么办Win7开机显示正在配置Windows Update请勿关机...

    置信有很多用户都跟小编一样遇到过这样的问题&#xff0c;电脑时发现开机屏幕显现“正在配置Windows Update&#xff0c;请勿关机”(如下图所示)&#xff0c;而且还需求等大约5分钟才干进入系统。这是怎样回事呢&#xff1f;一切都是正常操作的&#xff0c;为什么开时机呈现“正…...

    2022/11/19 21:17:13
  30. 准备配置windows 请勿关闭计算机 蓝屏,Win7开机总是出现提示“配置Windows请勿关机”...

    Win7系统开机启动时总是出现“配置Windows请勿关机”的提示&#xff0c;没过几秒后电脑自动重启&#xff0c;每次开机都这样无法进入系统&#xff0c;此时碰到这种现象的用户就可以使用以下5种方法解决问题。方法一&#xff1a;开机按下F8&#xff0c;在出现的Windows高级启动选…...

    2022/11/19 21:17:12
  31. 准备windows请勿关闭计算机要多久,windows10系统提示正在准备windows请勿关闭计算机怎么办...

    有不少windows10系统用户反映说碰到这样一个情况&#xff0c;就是电脑提示正在准备windows请勿关闭计算机&#xff0c;碰到这样的问题该怎么解决呢&#xff0c;现在小编就给大家分享一下windows10系统提示正在准备windows请勿关闭计算机的具体第一种方法&#xff1a;1、2、依次…...

    2022/11/19 21:17:11
  32. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”的解决方法...

    今天和大家分享一下win7系统重装了Win7旗舰版系统后&#xff0c;每次关机的时候桌面上都会显示一个“配置Windows Update的界面&#xff0c;提示请勿关闭计算机”&#xff0c;每次停留好几分钟才能正常关机&#xff0c;导致什么情况引起的呢&#xff1f;出现配置Windows Update…...

    2022/11/19 21:17:10
  33. 电脑桌面一直是清理请关闭计算机,windows7一直卡在清理 请勿关闭计算机-win7清理请勿关机,win7配置更新35%不动...

    只能是等着&#xff0c;别无他法。说是卡着如果你看硬盘灯应该在读写。如果从 Win 10 无法正常回滚&#xff0c;只能是考虑备份数据后重装系统了。解决来方案一&#xff1a;管理员运行cmd&#xff1a;net stop WuAuServcd %windir%ren SoftwareDistribution SDoldnet start WuA…...

    2022/11/19 21:17:09
  34. 计算机配置更新不起,电脑提示“配置Windows Update请勿关闭计算机”怎么办?

    原标题&#xff1a;电脑提示“配置Windows Update请勿关闭计算机”怎么办&#xff1f;win7系统中在开机与关闭的时候总是显示“配置windows update请勿关闭计算机”相信有不少朋友都曾遇到过一次两次还能忍但经常遇到就叫人感到心烦了遇到这种问题怎么办呢&#xff1f;一般的方…...

    2022/11/19 21:17:08
  35. 计算机正在配置无法关机,关机提示 windows7 正在配置windows 请勿关闭计算机 ,然后等了一晚上也没有关掉。现在电脑无法正常关机...

    关机提示 windows7 正在配置windows 请勿关闭计算机 &#xff0c;然后等了一晚上也没有关掉。现在电脑无法正常关机以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;关机提示 windows7 正在配…...

    2022/11/19 21:17:05
  36. 钉钉提示请勿通过开发者调试模式_钉钉请勿通过开发者调试模式是真的吗好不好用...

    钉钉请勿通过开发者调试模式是真的吗好不好用 更新时间:2020-04-20 22:24:19 浏览次数:729次 区域: 南阳 > 卧龙 列举网提醒您:为保障您的权益,请不要提前支付任何费用! 虚拟位置外设器!!轨迹模拟&虚拟位置外设神器 专业用于:钉钉,外勤365,红圈通,企业微信和…...

    2022/11/19 21:17:05
  37. 配置失败还原请勿关闭计算机怎么办,win7系统出现“配置windows update失败 还原更改 请勿关闭计算机”,长时间没反应,无法进入系统的解决方案...

    前几天班里有位学生电脑(windows 7系统)出问题了&#xff0c;具体表现是开机时一直停留在“配置windows update失败 还原更改 请勿关闭计算机”这个界面&#xff0c;长时间没反应&#xff0c;无法进入系统。这个问题原来帮其他同学也解决过&#xff0c;网上搜了不少资料&#x…...

    2022/11/19 21:17:04
  38. 一个电脑无法关闭计算机你应该怎么办,电脑显示“清理请勿关闭计算机”怎么办?...

    本文为你提供了3个有效解决电脑显示“清理请勿关闭计算机”问题的方法&#xff0c;并在最后教给你1种保护系统安全的好方法&#xff0c;一起来看看&#xff01;电脑出现“清理请勿关闭计算机”在Windows 7(SP1)和Windows Server 2008 R2 SP1中&#xff0c;添加了1个新功能在“磁…...

    2022/11/19 21:17:03
  39. 请勿关闭计算机还原更改要多久,电脑显示:配置windows更新失败,正在还原更改,请勿关闭计算机怎么办...

    许多用户在长期不使用电脑的时候&#xff0c;开启电脑发现电脑显示&#xff1a;配置windows更新失败&#xff0c;正在还原更改&#xff0c;请勿关闭计算机。。.这要怎么办呢&#xff1f;下面小编就带着大家一起看看吧&#xff01;如果能够正常进入系统&#xff0c;建议您暂时移…...

    2022/11/19 21:17:02
  40. 还原更改请勿关闭计算机 要多久,配置windows update失败 还原更改 请勿关闭计算机,电脑开机后一直显示以...

    配置windows update失败 还原更改 请勿关闭计算机&#xff0c;电脑开机后一直显示以以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;配置windows update失败 还原更改 请勿关闭计算机&#x…...

    2022/11/19 21:17:01
  41. 电脑配置中请勿关闭计算机怎么办,准备配置windows请勿关闭计算机一直显示怎么办【图解】...

    不知道大家有没有遇到过这样的一个问题&#xff0c;就是我们的win7系统在关机的时候&#xff0c;总是喜欢显示“准备配置windows&#xff0c;请勿关机”这样的一个页面&#xff0c;没有什么大碍&#xff0c;但是如果一直等着的话就要两个小时甚至更久都关不了机&#xff0c;非常…...

    2022/11/19 21:17:00
  42. 正在准备配置请勿关闭计算机,正在准备配置windows请勿关闭计算机时间长了解决教程...

    当电脑出现正在准备配置windows请勿关闭计算机时&#xff0c;一般是您正对windows进行升级&#xff0c;但是这个要是长时间没有反应&#xff0c;我们不能再傻等下去了。可能是电脑出了别的问题了&#xff0c;来看看教程的说法。正在准备配置windows请勿关闭计算机时间长了方法一…...

    2022/11/19 21:16:59
  43. 配置失败还原请勿关闭计算机,配置Windows Update失败,还原更改请勿关闭计算机...

    我们使用电脑的过程中有时会遇到这种情况&#xff0c;当我们打开电脑之后&#xff0c;发现一直停留在一个界面&#xff1a;“配置Windows Update失败&#xff0c;还原更改请勿关闭计算机”&#xff0c;等了许久还是无法进入系统。如果我们遇到此类问题应该如何解决呢&#xff0…...

    2022/11/19 21:16:58
  44. 如何在iPhone上关闭“请勿打扰”

    Apple’s “Do Not Disturb While Driving” is a potentially lifesaving iPhone feature, but it doesn’t always turn on automatically at the appropriate time. For example, you might be a passenger in a moving car, but your iPhone may think you’re the one dri…...

    2022/11/19 21:16:57