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

    相关文章

    C#实现将Office文档(Word/Excel/PDF/PPT)转为Markdown格式

    《C#实现将Office文档(Word/Excel/PDF/PPT)转为Markdown格式》Markdown凭借简洁的语法、优良的可读性,以及对版本控制系统的高度兼容性,逐渐成为最受欢迎的文档格式... 目录为什么要将文档转换为 Markdown 格式使用工具将 Word 文档转换为 Markdown(.

    Python数据分析与可视化的全面指南(从数据清洗到图表呈现)

    《Python数据分析与可视化的全面指南(从数据清洗到图表呈现)》Python是数据分析与可视化领域中最受欢迎的编程语言之一,凭借其丰富的库和工具,Python能够帮助我们快速处理、分析数据并生成高质... 目录一、数据采集与初步探索二、数据清洗的七种武器1. 缺失值处理策略2. 异常值检测与修正3. 数据

    使用C#删除Excel表格中的重复行数据的代码详解

    《使用C#删除Excel表格中的重复行数据的代码详解》重复行是指在Excel表格中完全相同的多行数据,删除这些重复行至关重要,因为它们不仅会干扰数据分析,还可能导致错误的决策和结论,所以本文给大家介绍... 目录简介使用工具C# 删除Excel工作表中的重复行语法工作原理实现代码C# 删除指定Excel单元

    Python实现pdf电子发票信息提取到excel表格

    《Python实现pdf电子发票信息提取到excel表格》这篇文章主要为大家详细介绍了如何使用Python实现pdf电子发票信息提取并保存到excel表格,文中的示例代码讲解详细,感兴趣的小伙伴可以跟... 目录应用场景详细代码步骤总结优化应用场景电子发票信息提取系统主要应用于以下场景:企业财务部门:需

    Python处理大量Excel文件的十个技巧分享

    《Python处理大量Excel文件的十个技巧分享》每天被大量Excel文件折磨的你看过来!这是一份Python程序员整理的实用技巧,不说废话,直接上干货,文章通过代码示例讲解的非常详细,需要的朋友可... 目录一、批量读取多个Excel文件二、选择性读取工作表和列三、自动调整格式和样式四、智能数据清洗五、

    Python Pandas高效处理Excel数据完整指南

    《PythonPandas高效处理Excel数据完整指南》在数据驱动的时代,Excel仍是大量企业存储核心数据的工具,Python的Pandas库凭借其向量化计算、内存优化和丰富的数据处理接口,成为... 目录一、环境搭建与数据读取1.1 基础环境配置1.2 数据高效载入技巧二、数据清洗核心战术2.1 缺失

    利用Python实现Excel文件智能合并工具

    《利用Python实现Excel文件智能合并工具》有时候,我们需要将多个Excel文件按照特定顺序合并成一个文件,这样可以更方便地进行后续的数据处理和分析,下面我们看看如何使用Python实现Exce... 目录运行结果为什么需要这个工具技术实现工具的核心功能代码解析使用示例工具优化与扩展有时候,我们需要将

    使用Vue-ECharts实现数据可视化图表功能

    《使用Vue-ECharts实现数据可视化图表功能》在前端开发中,经常会遇到需要展示数据可视化的需求,比如柱状图、折线图、饼图等,这类需求不仅要求我们准确地将数据呈现出来,还需要兼顾美观与交互体验,所... 目录前言为什么选择 vue-ECharts?1. 基于 ECharts,功能强大2. 更符合 Vue

    通过C#获取Excel单元格的数据类型的方法详解

    《通过C#获取Excel单元格的数据类型的方法详解》在处理Excel文件时,了解单元格的数据类型有助于我们正确地解析和处理数据,本文将详细介绍如何使用FreeSpire.XLS来获取Excel单元格的... 目录引言环境配置6种常见数据类型C# 读取单元格数据类型引言在处理 Excel 文件时,了解单元格

    C#实现高性能Excel百万数据导出优化实战指南

    《C#实现高性能Excel百万数据导出优化实战指南》在日常工作中,Excel数据导出是一个常见的需求,然而,当数据量较大时,性能和内存问题往往会成为限制导出效率的瓶颈,下面我们看看C#如何结合EPPl... 目录一、技术方案核心对比二、各方案选型建议三、性能对比数据四、核心代码实现1. MiniExcel