Google Search Console 可帮助您了解您网站在 Google 搜索中的表现,但要理解您的数据并非易事。如果您设置一个自定义信息中心,其中包含适合您网站的数据可视化功能,这可能有助于您基于数据做出更明智的决策。本博文是重点介绍使用 Google 数据洞察导出、改进和直观呈现 Search Console 数据的一系列博文中的第一篇。
在今天的博文中,我们将探讨如何将 Search Console 数据导入 Google 数据洞察。我们将通过一个示例展示如何将 Search Console 数据下载到 Google 表格中、使用地理区域改进数据以及将电子表格关联到数据洞察。
在未来的博文中,我们将探讨如何创建数据可视化内容,来帮助您监控和分析数据。
准备数据并关联至数据洞察
要将 Search Console 数据导入数据洞察,可采用如下两种方法:
如果您希望看到与您在 Search Console 中看到的相同的数据,应使用 Google 数据洞察数据连接器。此方法很简单:访问连接器库,选择 Search Console,然后找到想要关联的资源。您可在数据洞察帮助中心找到有关连接器的指南。
如果您想改进 Search Console 提供的数据(例如,将国家/地区按区域归类),您应该先通过网页界面或 API 导出数据。然后,您可以使用 Google 表格或 BigQuery 处理数据,并将其关联至数据洞察。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],[],[[["\u003cp\u003eThis post explains how to export, enhance, and visualize Search Console data using Google Data Studio for better website performance analysis.\u003c/p\u003e\n"],["\u003cp\u003eYou can directly connect Search Console to Data Studio or enhance the data by exporting it to Google Sheets for adding custom information like geographical regions.\u003c/p\u003e\n"],["\u003cp\u003eThis post focuses on enhancing Search Console data in Google Sheets by adding geographical regions using IMPORTDATA and VLOOKUP functions and then connecting it to Data Studio.\u003c/p\u003e\n"],["\u003cp\u003eFuture posts will cover creating data visualizations in Data Studio for monitoring and analyzing your website's search traffic data.\u003c/p\u003e\n"],["\u003cp\u003eEngage with the Google Search Central or Data Studio communities for questions and follow Google Search Central on Twitter for future updates.\u003c/p\u003e\n"]]],["This guide details how to enhance and visualize Google Search Console data in Google Data Studio. It outlines two methods for importing data: directly via the Data Studio connector or by first exporting and manipulating the data. The preferred method involves exporting Search Console data to Google Sheets, enriching it (e.g., adding geographical regions using the `IMPORTDATA` and `VLOOKUP` functions), and then connecting the enhanced spreadsheet to Data Studio for custom visualizations. The next steps include monitoring the data using Data studio.\n"],null,["# Connecting Search Console to Data Studio\n\nTuesday, March 08, 2022\n\n\n[Google Search Console](https://goo.gle/searchconsole) gives you insight into your website performance in Google Search,\nbut understanding your data can be a challenge. If you set up a custom dashboard with data visualizations that work for **you** , it might help you\nmake better decisions that are supported by data. This post is the first in a series of posts that will focus on exporting, enhancing, and visualizing\nSearch Console data using [Google Data Studio](https://support.google.com/datastudio/answer/6283323).\n\n\nIn today's post, we'll discuss how to bring your Search Console data into Google Data Studio. We'll show an example where we download Search Console data\ninto Google Sheets, enhance the data with geographical regions, and connect the spreadsheet to Data Studio.\n\n\nIn future posts, we'll discuss how to create data visualizations to help you monitor and analyze your data.\n\nPrepare the data and connect to Data Studio\n-------------------------------------------\n\n\nIn order to import Search Console data into Data Studio, there are two roads you can take:\n\n- If you are happy to see the same data as you see in Search Console, you should use the Google Data Studio data connector. This option is straightforward: visit the [connector gallery](https://datastudio.google.com/data), choose Search Console, and find the property you'd like to connect. You can find a guide to the connector in the [Data Studio Help Center](https://support.google.com/datastudio/answer/7314895).\n- If you'd like to enhance the data provided by Search Console (for example, clustering countries into regions), you should first export the data from the web interface or through the API. Then, you can manipulate the data with Google Sheets or BigQuery and connect it to Data Studio.\n\n\nIn this post we'll discuss the second option, since it requires more steps and offers more customization opportunities. There are three main steps you need to take:\n\n1. Export Search Console data.\n2. Add your own data on top of it.\n3. Import it into Data Studio.\n\n### Export Search Console data\n\n\nIn order to export your data, visit the Search Console [Performance report](https://search.google.com/search-console/performance/search-analytics),\nchoose a date range, click **Export** , and choose Google Sheets. This will create a new spreadsheet, which we'll enhance in the next step. You can also use\nthe [Search Analytics API](/webmaster-tools/v1/searchanalytics/query) for a more automated solution, but that's\nout of scope for this post.\n\n\nYou can read more about the dimensions and metrics that will be available to you in the [Performance\nreport help documentation](https://support.google.com/webmasters/answer/7576553#dimensions).\n\n### Enhance Search Console data\n\n\nTo show how to enhance your Search Console data, we'll use a neat Google Sheets function, [IMPORTDATA](https://support.google.com/docs/answer/3093335),\nwhich can import data from a URL. In our example, we're importing the\n[ISO 3166 countries by region](https://gist.githubusercontent.com/richjenks/15b75f1960bc3321e295/raw/62749882ed0e9dffa3edd7a9a44a7be59df8402c/countries.md) table.\n\n\nAdd a new sheet to the data you exported from Search Console and enter the following code to the first cell: \n\n```text\n=IMPORTDATA(\"https://gist.githubusercontent.com/richjenks/15b75f1960bc3321e295/raw/62749882ed0e9dffa3edd7a9a44a7be59df8402c/countries.md\", \"|\")\n```\n\n\nIn the Search Console sheet, create a column for **Region** and use the [VLOOKUP](https://support.google.com/docs/answer/3093318)\nfunction to match the regions to the countries.\n\n\nHere is a [sample sheet](https://docs.google.com/spreadsheets/d/1WoyovWWCLq9uaYfnsICL4uMQMApaoNhjMf8U4nl0ZHQ/) showing how the final table would look.\n\n\n*Embedded: Table showing Search Console data enhanced with country regions*\n\n\nEven though we're using an example to enhance the geographical data, you can use the same process to add any type of information. For example, if you have a query classification,\nyou could use that to group queries into categories.\n\n### Connect Google Sheets to Data Studio\n\n\nFinally, connect your Google Sheets to Data Studio. To do this, visit the [connector gallery](https://datastudio.google.com/data),\nchoose Google Sheets, and find your newly created spreadsheet; but make sure to choose the right sheet.\n\n\nOnce the data is in Data Studio, the visualization work begins...\n\nNext\n----\n\n\nIn the next post in this series, [Monitoring Search traffic (and more!) with Data Studio](/search/blog/2022/03/monitoring-dashboard), we'll discuss different types of dashboards and provide step-by-step examples for you to follow along.\n\n\nAs always, let us know if you have any questions through the [Google\nSearch Central Community](https://support.google.com/webmasters/threads?thread_filter=(category:search_console)) or the [Data Studio Community](https://support.google.com/datastudio/threads?thread_filter=(category:connect_to_data)).\nAlso, if you're on Twitter, make sure to [follow us](https://twitter.com/googlesearchc); we'll announce future posts over there - *stay tuned!*\n\nPosted by [Daniel Waisberg](https://www.danielwaisberg.com), Search Advocate"]]