-
Notifications
You must be signed in to change notification settings - Fork 1
/
03-save-export.html
88 lines (86 loc) · 2.79 KB
/
03-save-export.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>Author Carpentry</title>
<link rel="stylesheet" href="css/site.css">
</head>
<body>
<header>
<a href="http://authorcarpentry.github.io"><img src="img/AClogo.jpg" alt="Author Carpentry logo"></a>
</header>
<nav>
<ul>
<li>
<a href=".">Lesson</a>
</li>
<li>
<a href="00-getting-started.html">Topic 1</a>
</li>
<li>
<a href="01-working-with-openrefine.html">Topic 2</a>
</li>
<li>
<a href="mailto:[email protected]">Contact Us</a>
</li>
</ul>
</nav>
<section>
<h1 id="learning-objectives">
Learning Objectives
</h1>
<ul>
<li>
Save an OpenRefine project.
</li>
<li>
Export cleaned data from an OpenRefine project.
</li>
</ul>
<hr />
<h1 id="lesson">
Lesson
</h1>
<h2 id="saving-and-exporting-a-project">
Saving and Exporting a Project
</h2>
<p>
In OpenRefine you can save or export the project. This means you’re saving the data and all the information about the cleaing steps you’ve done. Once you’ve saved a Project, you can open it up again and be just where you left off.
</p>
<h3 id="saving">
Saving
</h3>
<p>
By default OpenRefine is saving your project. If you close OpenRefine and open it up again, you’ll see a list of your projects. You can click on any one of them to open it up again.
</p>
<h3 id="exporting">
Exporting
</h3>
<p>
You can also export a project, for instance if you wanted to send it to someone else.
</p>
<pre><code> - Go to the 'Export' button in the top right. Click 'Export project'. This will save a compressed file that you can then open in OpenRefine that contains all the data and steps. </code></pre>
<h2 id="exporting-cleaned-data">
Exporting Cleaned Data
</h2>
<p>
Save your work when you are done by exporting it in the desire format. Save your files with meaningful names, no spaces. Refine does not change your original dataset (hooray!).
</p>
<pre><code> - Go to 'Export' in the top right. Click on the file type you want to export the data in. 'Tab-separated values' or 'Comma-separated values' would be good choices. </code></pre>
<p>
That file will get exported to your default Download directory. That file can then be eaily opened in a spreadsheet program or imported into programs like R or Python.
</p>
<p>
Previous: <a href="02-scripts.html">Scripts</a> Optional Next: <a href="04-services.html">Services in OpenRefine</a>
</p>
</section>
<footer>
<span>© Author Carpentry</span>
<span><a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img
alt="Creative Commons License" style="vertical-align: middle;"
src="https://i.creativecommons.org/l/by/4.0/80x15.png" /></a></span>
<span>This work is licensed under a <a rel="license"
href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution
4.0 International License</a></span>
</footer>
</body>
</html>