en-US/DataFrame-Help.xml

<?xml version="1.0" encoding="utf-8"?>
<helpItems xmlns="http://msh" schema="maml">
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>Export-DataFrame</command:name>
<maml:description>
<maml:para>Exports DataFrame to CSV file or string.</maml:para>
</maml:description>
<command:verb>Export</command:verb>
<command:noun>DataFrame</command:noun>
</command:details>
<maml:description>
<maml:para>Exports DataFrame to CSV file or string.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>Export-DataFrame</maml:name>
<command:parameter required="true" position="0" >
<maml:name>DataFrame</maml:name>
<command:parameterValue required="true">DataFrame</command:parameterValue>
</command:parameter>
<command:parameter required="true" position="1" >
<maml:name>Path</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Culture</maml:name>
<command:parameterValue required="true">CultureInfo</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Encoding</maml:name>
<command:parameterValue required="true">Encoding</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Separator</maml:name>
<command:parameterValue required="true">Char</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>NoHeader</maml:name>
</command:parameter>
</command:syntaxItem>
<command:syntaxItem>
<maml:name>Export-DataFrame</maml:name>
<command:parameter required="true" position="0" >
<maml:name>DataFrame</maml:name>
<command:parameterValue required="true">DataFrame</command:parameterValue>
</command:parameter>
<command:parameter required="true" position="named" >
<maml:name>String</maml:name>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Culture</maml:name>
<command:parameterValue required="true">CultureInfo</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Separator</maml:name>
<command:parameterValue required="true">Char</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>NoHeader</maml:name>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="true" position="0" >
<maml:name>DataFrame</maml:name>
<maml:description>
<maml:para>The DataFrame to export.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="true" position="1" >
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the CSV file.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Culture</maml:name>
<maml:description>
<maml:para>Specifies the culture info for formatting values.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Encoding</maml:name>
<maml:description>
<maml:para>The character encoding. Default is UTF8.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>NoHeader</maml:name>
<maml:description>
<maml:para>Tells that the file has no header.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Separator</maml:name>
<maml:description>
<maml:para>The field separator char. The default is comma. The value is either literal symbol or shortcut: &apos;c&apos;: comma, &apos;s&apos;: semicolon, &apos;t&apos;: tab.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="true" position="named" >
<maml:name>String</maml:name>
<maml:description>
<maml:para>Tells to output the CSV string.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>System.String</maml:name>
</dev:type>
<maml:description>
<maml:para>When the switch String is specified.</maml:para>
</maml:description>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
<dev:code># import
$df = Import-DataFrame data.tsv -Separator t

# modify
... | Out-DataFrame $df

# export
Export-DataFrame $df data.tsv -Separator t</dev:code>
</command:example>
</command:examples>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>Import-DataFrame</command:name>
<maml:description>
<maml:para>Imports DataFrame from CSV file or string.</maml:para>
</maml:description>
<command:verb>Import</command:verb>
<command:noun>DataFrame</command:noun>
</command:details>
<maml:description>
<maml:para>Imports DataFrame from CSV file or string.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>Import-DataFrame</maml:name>
<command:parameter required="true" position="0" >
<maml:name>Path</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>ColumnName</maml:name>
<command:parameterValue required="true">String[]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>ColumnType</maml:name>
<command:parameterValue required="true">Type[]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Culture</maml:name>
<command:parameterValue required="true">CultureInfo</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Encoding</maml:name>
<command:parameterValue required="true">Encoding</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>GuessCount</maml:name>
<command:parameterValue required="true">Int32[]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>RowCount</maml:name>
<command:parameterValue required="true">Int32</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Separator</maml:name>
<command:parameterValue required="true">Char</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>IndexColumn</maml:name>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>NoHeader</maml:name>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>RenameColumn</maml:name>
</command:parameter>
</command:syntaxItem>
<command:syntaxItem>
<maml:name>Import-DataFrame</maml:name>
<command:parameter required="true" position="named" >
<maml:name>String</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>ColumnName</maml:name>
<command:parameterValue required="true">String[]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>ColumnType</maml:name>
<command:parameterValue required="true">Type[]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Culture</maml:name>
<command:parameterValue required="true">CultureInfo</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>GuessCount</maml:name>
<command:parameterValue required="true">Int32[]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>RowCount</maml:name>
<command:parameterValue required="true">Int32</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Separator</maml:name>
<command:parameterValue required="true">Char</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>IndexColumn</maml:name>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>NoHeader</maml:name>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>RenameColumn</maml:name>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="true" position="0" >
<maml:name>Path</maml:name>
<maml:description>
<maml:para>Specifies the CSV file.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>ColumnName</maml:name>
<maml:description>
<maml:para>Specifies the column names.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>ColumnType</maml:name>
<maml:description>
<maml:para>Specifies the column types.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Culture</maml:name>
<maml:description>
<maml:para>Specifies the culture info for formatting values.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Encoding</maml:name>
<maml:description>
<maml:para>The character encoding. Default is UTF8.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>GuessCount</maml:name>
<maml:description>
<maml:para>Tells how many rows to use for guessing types. Defaults to 10. Specify more than one value to retry on type parsing errors.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>IndexColumn</maml:name>
<maml:description>
<maml:para>Tells to add the row index column.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>NoHeader</maml:name>
<maml:description>
<maml:para>Tells that the file has no header.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>RenameColumn</maml:name>
<maml:description>
<maml:para>Tells to rename duplicated columns.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>RowCount</maml:name>
<maml:description>
<maml:para>Tells how many rows to read.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Separator</maml:name>
<maml:description>
<maml:para>The field separator char. The default is comma. The value is either literal symbol or shortcut: &apos;c&apos;: comma, &apos;s&apos;: semicolon, &apos;t&apos;: tab.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="true" position="named" >
<maml:name>String</maml:name>
<maml:description>
<maml:para>Specifies the source CSV string.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.DataFrame</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
<dev:code># import
$df = Import-DataFrame data.tsv -Separator t

# modify
... | Out-DataFrame $df

# export
Export-DataFrame $df data.tsv -Separator t</dev:code>
</command:example>
</command:examples>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>Read-DataFrame</command:name>
<maml:description>
<maml:para>Reads DataFrame from the specified source.</maml:para>
</maml:description>
<command:verb>Read</command:verb>
<command:noun>DataFrame</command:noun>
</command:details>
<maml:description>
<maml:para>This command returns a DataFrame populated from the specified source. The data reader or adapter source is disposed by this operation.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>Read-DataFrame</maml:name>
<command:parameter required="true" position="0" >
<maml:name>Source</maml:name>
<command:parameterValue required="true">Object</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="true" position="0" >
<maml:name>Source</maml:name>
<maml:description>
<maml:para>The source data table, reader or adapter.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.DataFrame</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-DataFrame</command:name>
<maml:description>
<maml:para>Creates a new DataFrame.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>DataFrame</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new DataFrame from the specified columns.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-DataFrame</maml:name>
<command:parameter required="true" position="0" >
<maml:name>Column</maml:name>
<command:parameterValue required="true">DataFrameColumn[]</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="true" position="0" >
<maml:name>Column</maml:name>
<maml:description>
<maml:para>DataFrame columns.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.DataFrame</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
<command:examples>
<command:example>
<maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
<dev:code>## The more effective way (but more typing)

# create just columns first
$name = New-StringColumn Name
$age = New-Int32Column Age

# append data to columns
$name.Append(&apos;Joe&apos;)
$age.Append(42)

# create DataFrame
$df = New-DataFrame $name, $age</dev:code>
</command:example>
<command:example>
<maml:title>-------------------------- EXAMPLE 2 --------------------------</maml:title>
<dev:code>## The less effective way (but less typing)

# create columns and DataFrame
$df = New-DataFrame @(
    New-StringColumn Name
    New-Int32Column Age
)

# append data rows
Add-DataFrameRow $df Joe, 42</dev:code>
</command:example>
</command:examples>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>Out-DataFrame</command:name>
<maml:description>
<maml:para>Appends DataFrame rows from input objects.</maml:para>
</maml:description>
<command:verb>Out</command:verb>
<command:noun>DataFrame</command:noun>
</command:details>
<maml:description>
<maml:para>The DataFrame columns work as selectors of input object properties. If they do not match, transform input objects by Select-Object.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>Out-DataFrame</maml:name>
<command:parameter required="true" position="0" >
<maml:name>DataFrame</maml:name>
<command:parameterValue required="true">DataFrame</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">PSObject</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="true" position="0" >
<maml:name>DataFrame</maml:name>
<maml:description>
<maml:para>The DataFrame for appending rows.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>DataFrame row source.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>DataFrame row source.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:examples>
<command:example>
<maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
<dev:code># create DataFrame
$df = New-DataFrame @(
    New-StringColumn Name
    New-Int64Column Length
)

# append rows from input objects
Get-ChildItem -File | Out-DataFrame $df</dev:code>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Add-DataFrameRow</maml:linkText>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>Add-DataFrameRow</command:name>
<maml:description>
<maml:para>Adds one row to DataFrame.</maml:para>
</maml:description>
<command:verb>Add</command:verb>
<command:noun>DataFrameRow</command:noun>
</command:details>
<maml:description>
<maml:para>This command adds one row of values to the DataFrame. Values come from the pipeline or as the parameter.
 
The number of input values may be less than column count. In this case nulls replace missing values.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>Add-DataFrameRow</maml:name>
<command:parameter required="true" position="0" >
<maml:name>DataFrame</maml:name>
<command:parameterValue required="true">DataFrame</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="1" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Object</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="true" position="0" >
<maml:name>DataFrame</maml:name>
<maml:description>
<maml:para>The DataFrame to be appended with one row.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="1" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Row values from the pipeline or the parameter.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Row values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:examples>
<command:example>
<maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
<dev:code># create DataFrame
$df = New-DataFrame @(
    New-StringColumn Name
    New-Int64Column Length
)

# append rows from input objects
Get-ChildItem -File | % { Add-DataFrameRow $df $_.Name, $_.Length }</dev:code>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Out-DataFrame</maml:linkText>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-BooleanColumn</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.BooleanDataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>BooleanColumn</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-BooleanColumn</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Nullable[Boolean]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.BooleanDataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-ByteColumn</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.ByteDataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>ByteColumn</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-ByteColumn</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Nullable[Byte]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.ByteDataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-CharColumn</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.CharDataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>CharColumn</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-CharColumn</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Nullable[Char]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.CharDataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-DateTimeColumn</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.DateTimeDataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>DateTimeColumn</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-DateTimeColumn</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Nullable[DateTime]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.DateTimeDataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-DecimalColumn</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.DecimalDataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>DecimalColumn</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-DecimalColumn</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Nullable[Decimal]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.DecimalDataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-DoubleColumn</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.DoubleDataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>DoubleColumn</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-DoubleColumn</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Nullable[Double]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.DoubleDataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-Int16Column</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.Int16DataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>Int16Column</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-Int16Column</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Nullable[Int16]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.Int16DataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-Int32Column</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.Int32DataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>Int32Column</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-Int32Column</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Nullable[Int32]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.Int32DataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-Int64Column</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.Int64DataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>Int64Column</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-Int64Column</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Nullable[Int64]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.Int64DataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-SingleColumn</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.SingleDataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>SingleColumn</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-SingleColumn</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">Nullable[Single]</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.SingleDataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>New-StringColumn</command:name>
<maml:description>
<maml:para>Creates Microsoft.Data.Analysis.StringDataFrameColumn.</maml:para>
</maml:description>
<command:verb>New</command:verb>
<command:noun>StringColumn</command:noun>
</command:details>
<maml:description>
<maml:para>This command creates a new column with the specified or generated name, optional initial length, and optional values added from the pipeline.</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>New-StringColumn</maml:name>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>InputObject</maml:name>
<command:parameterValue required="true">String</command:parameterValue>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<command:parameterValue required="true">Int64</command:parameterValue>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<command:parameter required="false" position="0" >
<maml:name>Name</maml:name>
<maml:description>
<maml:para>Specifies the column name. If it is omitted then &quot;ColumnN&quot; is used where N is some number.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" pipelineInput="true (ByValue)" position="named" >
<maml:name>InputObject</maml:name>
<maml:description>
<maml:para>Column values from the pipeline.</maml:para>
</maml:description>
</command:parameter>
<command:parameter required="false" position="named" >
<maml:name>Length</maml:name>
<maml:description>
<maml:para>Specifies the initial column length.</maml:para>
</maml:description>
</command:parameter>
</command:parameters>
<command:inputTypes>
<command:inputType>
<dev:type>
</dev:type>
<maml:description>
<maml:para>Column values.</maml:para>
</maml:description>
</command:inputType>
</command:inputTypes>
<command:returnValues>
<command:returnValue>
<dev:type>
<maml:name>Microsoft.Data.Analysis.StringDataFrameColumn</maml:name>
</dev:type>
</command:returnValue>
</command:returnValues>
</command:command>
</helpItems>