excel增减因素比较图表_比较Excel图表中的字数

2024-01-30 14:10

本文主要是介绍excel增减因素比较图表_比较Excel图表中的字数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

excel增减因素比较图表

比较Excel图表中的字数 (Compare Word Counts in Excel Chart)

functionalartIt's week two in the free online
Infographics and data visualization course, led by Alberto Cairo, and I'm working on this week's assignment.

信息图表和数据可视化课程的第二周,我正在研究本周的作业。

The discussion this week is about a New York Times graphic that shows the number of times that words were used at national conventions.

本周的讨论是关于《纽约时报》的图片,该图片显示了在全国代表大会上使用该单词的次数。

The words are shown in blue and red (pink?) bubbles, representing the party colours, and you can add other words to the graphic, to see how they fared.

单词以蓝色和红色(粉红色?)气泡显示,代表聚会的颜色,您可以在图形中添加其他单词,以查看其效果。

infographicwordsused01

If you click on a circle, the selected word is shown in context, below the graphic, in various speeches.

如果单击一个圆圈,则选定的单词会在上下文中以各种语言显示在图形下方。

infographicwordsused02

信息图的改进 (Improvements to the Infographic)

There were things that I liked about this infographic, and a few things that could be improved.

关于此信息图表,我有些喜欢的地方,还有一些可以改进的地方。

The positives:

优点:

  • The circles gave a quick overview of the word usage, and showed the party split on each word.

    圈子提供了单词用法的快速概览,并显示了在每个单词上的用法说明。
  • Words that were used more often my Democrats fell to the left, and Republican favourites fell to the right.

    我的民主党人经常使用的词落在左边,而共和党的最爱则落在右边。
  • It was easy to enter a new word, and see where it fell

    输入一个新词很容易,看看它落在哪里
  • It helped to see the words in context, below the graphic, to understand how they were used

    它有助于在图形下方查看上下文中的单词,以了解其用法

The negatives:

底片:

  • It was hard to see some of the words, in the smaller circles

    在较小的圆圈中很难看到一些单词
  • The words were hard to find, because they were in random order, on either side of the graphic

    在图形的两侧很难找到这些单词,因为它们是随机顺序的
  • It wasn't clear how or why the words in the infographic were selected. There must have been thousands of words used in the speeches, and only a few were shown.

    目前尚不清楚如何或为什么选择图表中的单词。 演讲中肯定有成千上万个单词,只显示了几个。

在Excel中显示单词用法 (Show the Word Usage in Excel)

It would take a huge database to store all those speeches, and analyze them. Excel probably couldn't handle that, but it can do a smaller version of the word usage graphic.

需要一个巨大的数据库来存储所有这些语音,并进行分析。 Excel可能无法解决这个问题,但是它可以处理较小的单词用法图形版本。

In an Excel chart, I could arrange the words alphabetically, so they're easier to find, or sort by total times used, or show highest use by each party.

在Excel图表中,我可以按字母顺序排列单词,因此更容易查找它们,也可以按使用的总时间进行排序,或者显示各方的最高使用率。

To start, I listed a few of the words, and the number of times they were used by each party.

首先,我列出了一些单词,以及每一方使用它们的次数。

infographicwordsused03

I formatted that list as an Excel table, named tblWordsAll, and added a total in each row.

我将该列表格式化为一个名为tblWordsAll的Excel表 ,并在每行中添加了总计。

=SUM(tblWordsAll[@[Democrat]:[Republican]])

= SUM(tblWordsAll [@ [Democrat]:[Republican]])

infographicwordsused04

To finish the table, I named the data in the first column – WordList.

为了完成表,我在第一列– WordList中命名了数据。

infographicwordsused05

创建单词简短列表 (Create a Short List of Words)

Instead of showing all the words in the a chart, I'd like to select a few from the main list. So, I created another table, named tblWordsSel, with a drop down list in the first column.

我不想在图表中显示所有单词,而是从主列表中选择一些单词。 因此,我创建了另一个表tblWordsSel,并在第一列中有一个下拉列表。

The drop down is a data validation list, using the WordList range as its source.

下拉列表是一个数据验证列表 ,使用WordList范围作为其来源。

infographicwordsused06

I selected three words, to use in the chart, and then sorted the words in ascending order (A-Z).

我选择了三个单词以在图表中使用,然后按升序(AZ)对单词进行排序。

跨表格填充公式很费劲 (Filling Table Formulas Across Is a Drag)

To pull the related numbers from the main table, I added INDEX / MATCH formulas in the next two columns.

为了从主表中提取相关数字,我在接下来的两列中添加了INDEX / MATCH公式。

=IFERROR(INDEX(tblWordsAll[Democrat], MATCH([@Word],tblWordsAll[Word],0)),0)

= IFERROR(INDEX(tblWordsAll [Democrat],MATCH([@ Word],tblWordsAll [Word],0)),0)

Usually I would drag a formula across, to fill in the next column, but I can't find a way to create an absolute reference to a table column. Am I missing something obvious?

通常,我会拖动一个公式来填充下一列,但找不到找到对表列的绝对引用的方法。 我是否缺少明显的东西?

If I drag the formula over to the Republican column, it shifts from looking in the Word column, to looking in the Democrat column.

如果将公式拖到“共和党”列中,则该公式将从在“单词”列中查找到在“民主党”列中查找。

So, I copied the formula, and pasted it into the formula bar with cell C2 selected. Then, I changed the reference for the INDEX to Republican instead of Democrat. There must be a better way!

因此,我复制了公式,并将其粘贴到选择了单元格C2的公式栏中。 然后,我将INDEX的参考改为共和党而不是民主党。 肯定有更好的办法!

=IFERROR(INDEX(tblWordsAll[Republican], MATCH([@Word],tblWordsAll[Word],0)),0)

= IFERROR(INDEX(tblWordsAll [Republican],MATCH([@ Word],tblWordsAll [Word],0)),0)

infographicwordsused07

绘制结果图 (Chart the Results)

To show the results in a chart, I selected a cell in the small table, and on the Excel's Ribbon, clicked the Insert tab.

为了在图表中显示结果,我在小表中选择了一个单元格,然后在Excel的功能区上单击“插入”选项卡。

From the Bar Chart drop down, I clicked on Stacked Bar, to create this chart. How convenient – it even defaulted to the correct colours!

在“条形图”下拉列表中,单击“堆积条形图”以创建此图。 多么方便–它甚至默认为正确的颜色!

infographicwordsused08

There are a few changes to make, so the chart looks better:

需要进行一些更改,因此图表看起来更好:

  1. Right-click the Category Axis, and click Format Axis

    右键单击“类别”轴,然后单击“设置轴格式”
  2. in the Axis Options, check 'Categories in Reverse Order' and for 'Horizontal Axis Crosses' select 'At Maximum Category'

    在“轴选项”中,选中“反转类别”,对于“水平轴交叉”,选择“最大类别”
  3. On the Ribbon's Layout tab (under Chart Tools), click Legend, and move it to the bottom

    在功能区的“布局”选项卡上(在“图表工具”下),单击“图例”,然后将其移至底部
  4. Also on the Layout tab, click Data Labels, and choose Center.

    同样在“布局”选项卡上,单击“数据标签”,然后选择“中心”。
  5. Change the Data Labels font to white, for better contrast.

    将数据标签字体更改为白色,以获得更好的对比度。

And here is the completed chart.

这是完整的图表。

infographicwordsused09

添加更多单词 (Add More Words)

Just like the original infographic, you can add more words to this Excel Chart.

就像原始信息图一样,您可以在此Excel图表中添加更多单词。

  1. Click in the last cell of the small table, and press the tab key, to go the first cell in a new row.

    单击小表的最后一个单元格,然后按Tab键,以进入新行中的第一个单元格。
  2. Select a new word from the drop down list, and it is automatically added to the chart too.

    从下拉列表中选择一个新单词,该单词也会自动添加到图表中。

After adding or changing the word selections, you can sort the Word column alphabetically again, so it's easier to find the words.

添加或更改单词选择之后,您可以再次按字母顺序对“单词”列进行排序,因此更容易找到单词。

infographicwordsused10

图表增强 (Chart Enhancements)

This simple chart lets you compare the word usage between parties, and see which words were used most overall.

这个简单的图表使您可以比较各方之间的单词使用情况,并查看总体上使用最多的单词。

There is room for improvement though, and here are a couple of features that you could add:

不过,还有改进的余地,您可以添加以下几个功能:

  • The word list for the chart has to be sorted manually in this version. Add a macro to sort the list automatically if the words change.

    在此版本中,图表的单词列表必须手动排序。 如果单词更改,请添加宏以自动对列表进行排序。
  • Add a Total column to the short word list, and an option to sort by that column, A-Z or Z-A.

    将“总计”列添加到短单词列表,并添加一个选项以按该列AZ或ZA进行排序。

What else would you add as an enhancement?

您还将添加什么作为增强功能?

下载样本文件 (Download the Sample File)

To download the sample file, please visit my Contextures website: Excel Sample Files – Charts and Graphics Section.

要下载示例文件,请访问我的Contextures网站: Excel示例文件–图表和图形部分 。

Look for CH0006 – Word Usage Chart

寻找CH0006 –单词用法表

Excel仪表板课程今天关闭 (Excel Dashboard Course Closes Today)

Remember, today is your last chance to register for Mynda Treacy's Excel Dashboard Course.

请记住,今天是您最后一次注册Mynda Treacy的Excel仪表板课程的机会

The course is video based, delivered online and is available 24/7. You'll receive comprehensive workbooks and sample dashboards to keep, and there’s even an option to download the videos.

该课程以视频为基础,在线提供,并且全天24/7可用。 您会收到综合的工作簿和示例仪表板,以备保留,甚至还可以选择下载视频。

Click here to find out details of the course, read the student comments, and watch the 'behind the scenes' video that shows you what you'll receive as a member.

单击此处查找课程详细信息,阅读学生的评论,并观看“幕后花絮”视频,向您展示您将获得的会员资格。

翻译自: https://contexturesblog.com/archives/2012/11/13/compare-word-counts-in-excel-chart/

excel增减因素比较图表


http://www.taodudu.cc/news/show-8441963.html

相关文章:

  • 怎么在公众号推文里加表格(Excel)
  • SpringBoot的POI(Word、Excel文档的读写)
  • SAP简介
  • 浅谈SAP
  • SAP公司及R/3全面介绍
  • 云悦项目总结
  • 【工业互联网】首家国家级工业互联网平台诞生 海尔COSMOPlat获批首家示范平台
  • java/php/net/python旅游网站设计
  • Property ‘dataSource’ is required,练习黑马程序员网上旅游项目验证登录账号时,配置文件加载不出来
  • 20210608数据分析岗面试复盘
  • python神秘的招式_那些Python集合中神秘的招式
  • Jupyter Notebook 修改默认目录和默认浏览器
  • mysql uster_使用 sed 命令替换/删除 文本字符的 20 个例子
  • 迎新|Apache Pulsar 海外社区迎新四位 Committer
  • 浮生记c语言,我的浮生记
  • Unity使用脚本获得当前按钮的名称
  • (转)提高Grails应用的查询性能
  • Mac 安装MySQL5.7及修改密码的过程
  • 【计算机组成原理】实验3:存储器读写和总线控制
  • 社区峰会|Pulsar Summit 旧金山峰会议题亮点曝光!
  • 50个开发必备的Python经典脚本(11-20)
  • LoRa无线通信技术介绍(六)SX127X芯片收发程序讲解
  • 无线定位之一 SX1302 网关源码 thread_up 线程详解
  • sx:快速强大易于使用的现代化网络扫描器
  • 华为VUE考试注册流程
  • MS9122是一款USB单芯片投屏器,内部集成了USB2 0 控制器和数据收发模块、HDMI 数据接口和音视频处理模块。MS9122可以通过USB接口显示
  • im和音视频开发哪个更好_成为父亲如何使我成为更好的开发人员(和副版本)...
  • MS2107 CVBS TO USB数据收发模块、视频ADC模块、音频ADC模块和音视频处理模块
  • 使用Qt和海康SDK获取视频并使用OpenCV处理每帧图像进行显示和音视频处理
  • 【二】Android MediaRecorder C++底层架构音视频处理过程和音视频同步源码分析
  • 这篇关于excel增减因素比较图表_比较Excel图表中的字数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



    http://www.chinasem.cn/article/660493

    相关文章

    java中使用POI生成Excel并导出过程

    《java中使用POI生成Excel并导出过程》:本文主要介绍java中使用POI生成Excel并导出过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录需求说明及实现方式需求完成通用代码版本1版本2结果展示type参数为atype参数为b总结注:本文章中代码均为

    利用Python开发Markdown表格结构转换为Excel工具

    《利用Python开发Markdown表格结构转换为Excel工具》在数据管理和文档编写过程中,我们经常使用Markdown来记录表格数据,但它没有Excel使用方便,所以本文将使用Python编写一... 目录1.完整代码2. 项目概述3. 代码解析3.1 依赖库3.2 GUI 设计3.3 解析 Mark

    Java利用poi实现word表格转excel

    《Java利用poi实现word表格转excel》这篇文章主要为大家详细介绍了Java如何利用poi实现word表格转excel,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 一、每行对象类需要针对不同的表格进行对应的创建。package org.example.wordToEx

    利用Python实现添加或读取Excel公式

    《利用Python实现添加或读取Excel公式》Excel公式是数据处理的核心工具,从简单的加减运算到复杂的逻辑判断,掌握基础语法是高效工作的起点,下面我们就来看看如何使用Python进行Excel公... 目录python Excel 库安装Python 在 Excel 中添加公式/函数Python 读取

    基于Python开发批量提取Excel图片的小工具

    《基于Python开发批量提取Excel图片的小工具》这篇文章主要为大家详细介绍了如何使用Python中的openpyxl库开发一个小工具,可以实现批量提取Excel图片,有需要的小伙伴可以参考一下... 目前有一个需求,就是批量读取当前目录下所有文件夹里的Excel文件,去获取出Excel文件中的图片,并

    Java导入、导出excel用法步骤保姆级教程(附封装好的工具类)

    《Java导入、导出excel用法步骤保姆级教程(附封装好的工具类)》:本文主要介绍Java导入、导出excel的相关资料,讲解了使用Java和ApachePOI库将数据导出为Excel文件,包括... 目录前言一、引入Apache POI依赖二、用法&步骤2.1 创建Excel的元素2.3 样式和字体2.

    使用EasyExcel实现简单的Excel表格解析操作

    《使用EasyExcel实现简单的Excel表格解析操作》:本文主要介绍如何使用EasyExcel完成简单的表格解析操作,同时实现了大量数据情况下数据的分次批量入库,并记录每条数据入库的状态,感兴... 目录前言固定模板及表数据格式的解析实现Excel模板内容对应的实体类实现AnalysisEventLis

    python多种数据类型输出为Excel文件

    《python多种数据类型输出为Excel文件》本文主要介绍了将Python中的列表、元组、字典和集合等数据类型输出到Excel文件中,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参... 目录一.列表List二.字典dict三.集合set四.元组tuplepython中的列表、元组、字典

    Python如何在Word中生成多种不同类型的图表

    《Python如何在Word中生成多种不同类型的图表》Word文档中插入图表不仅能直观呈现数据,还能提升文档的可读性和专业性,本文将介绍如何使用Python在Word文档中创建和自定义各种图表,需要的... 目录在Word中创建柱形图在Word中创建条形图在Word中创建折线图在Word中创建饼图在Word

    Python Excel实现自动添加编号

    《PythonExcel实现自动添加编号》这篇文章主要为大家详细介绍了如何使用Python在Excel中实现自动添加编号效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1、背景介绍2、库的安装3、核心代码4、完整代码1、背景介绍简单的说,就是在Excel中有一列h=会有重复