Skip to main content

How to Use Enso Documentation

Introduction

Enso's documentation for components are shown using the underlying code representation behind an Enso workflow. This may confuse many first time users of Enso, so this document is intended to de-code what you are seeing.

We will ultimately create images of the configured components and have these as part of the documentation, but in the meantime, this page is will help orient you to how to use our documentation.

Example 1 - rename_columns

On the documentation page for rename_columns, there are several examples. The first looks like this:

table1 = Table.from_rows ["bar","foo","buzz","bizz"] [["John", "25","abc","123"]]
table2 = table1.rename_columns ["FirstName"]

This is how the example above translates into an Enso component: Rename Columns

Notice that there is a copy button on the code view above. This exists for all Enso examples. In order to make this appear as a component in Enso, simply copy the code and paste into the Enso code window, as shown below:

Copy Code from Documentation

Example 2 - coming soon