Skip to content

Commit

Permalink
rename namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jul 9, 2018
1 parent 4613031 commit d0e5601
Show file tree
Hide file tree
Showing 41 changed files with 47 additions and 47 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ jobs:
mkdir -p test-reports/dist
mkdir -p test-reports/dist/Debug
mkdir -p test-reports/dist/Release
cp -r DataManipulation/bin/Release/netstandard2.0/Microsoft.ML.Ext.DataManipulation* test-reports/dist/Release
cp -r DataManipulation/bin/Debug/netstandard2.0/Microsoft.ML.Ext.DataManipulation* test-reports/dist/Debug
cp -r DataManipulation/bin/Release/netstandard2.0/Scikit.ML.DataFrame* test-reports/dist/Release
cp -r DataManipulation/bin/Debug/netstandard2.0/Scikit.ML.DataFrame* test-reports/dist/Debug
- store_artifacts:
path: test-reports
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Agg/DataFrameAggFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements aggregated functions for various types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Agg/DataFrameGrouping.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.ML.Runtime.Data;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements grouping functions for dataframe.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Agg/DataFrameJoining.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.ML.Runtime.Data;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements grouping functions for dataframe.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Agg/DataFrameMissingValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
public static class DataFrameMissingValue
{
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Agg/DataFrameSorting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.ML.Runtime.Data;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements sorting functions for dataframe.
Expand Down
3 changes: 1 addition & 2 deletions DataManipulation/DataColumn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
using System.Collections;
using System.Collections.Generic;
using Microsoft.ML.Runtime.Data;
using Microsoft.ML.Runtime.Data.Conversion;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements a dense column container.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/DataContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Microsoft.ML.Runtime.Internal.Utilities;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Contains data.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/DataException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

using System;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Raised when there is a type mismatch.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/DataFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using Microsoft.ML.Runtime.Data.IO;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements a DataFrame based on a IDataView from ML.net.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/DataFrameView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Microsoft.ML.Runtime.Data;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
public class DataFrameView : IDataFrameView
{
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/DataFrameViewGroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Microsoft.ML.Runtime.Data;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
public struct DataFrameGroupKey
{
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/DataFrameViewGroupResults.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Collections.Generic;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
public interface IDataFrameViewGroupResults
{
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/DataFrameViewSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Microsoft.ML.Runtime.Data;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements ISchema interface for this container.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/DataInterfaces.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.ML.Runtime.Data;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// List of implemented aggregated function available after a GroupBy.
Expand Down
9 changes: 5 additions & 4 deletions DataManipulation/DataManipulation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Ext.Microsoft.ML.DataManipulation</AssemblyName>
<RootNamespace>Ext.Microsoft.ML.DataManipulation</RootNamespace>
<AssemblyName>Scikit.ML.DataFrame</AssemblyName>
<RootNamespace>Scikit.ML.DataFrame</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.3.0</Version>
<Description>This library provides an easy way to manipulate data with Microsoft.ML. It implements a subsample of the pandas dataframes interface. It only represents dense datasets but provides usual functionalities such as expressions with ``[]`` and joins, group by, or sort functionalities.</Description>
<PackageProjectUrl>https://github.com/xadupre/machinelearning_dataframe</PackageProjectUrl>
<Copyright></Copyright>
<PackageLicenseUrl>https://github.com/xadupre/machinelearning_dataframe/blob/master/LICENSE</PackageLicenseUrl>
<PackageId>Ext.Microsoft.ML.DataManipulation</PackageId>
<Authors>Ext.Microsoft.ML.DataManipulation</Authors>
<PackageId>Scikit.ML.DataFrame</PackageId>
<Authors>Scikit.ML.DataFrame</Authors>
<Company>Scikit.ML.DataFrame</Company>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Helpers/DataFrameRandom.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Microsoft.ML.Runtime;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements grouping functions for dataframe.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Helpers/ExtendedLearningPipeline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using Transforms = Microsoft.ML.Transforms;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
class GenericScorerPipelineStep : ILearningPipelineDataStep
{
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Helpers/ExtendedSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Microsoft.ML.Runtime.Data;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Extends an existing Schema.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Helpers/SchemaHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using Microsoft.ML.Runtime.Data.Conversion;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Helpers about ISchema.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Helpers/TrainerHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.ML.Runtime.Internal.Calibration;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Extended interface for trainers.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/MutableTuple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
public interface ITUple
{
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/NumericColumn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using Microsoft.ML.Runtime.Data;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Wraps a column and adds numerical operators.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/NumericHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Helper for numeric purpose.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/ObjectConversion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Microsoft.ML.Runtime.Data;


namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
public static class ObjectConversion
{
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpAdditionHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements addition for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpAndHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpDivisionHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpEqualHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpInfEqualHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpInfHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpMinusHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpMultiplicationHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpNotEqualHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpNotHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpOrHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpSoustractionHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpSupEqualHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion DataManipulation/Op/DataFrameOpSupHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using Microsoft.ML.Runtime.Data;

namespace Ext.Microsoft.ML.DataManipulation
namespace Scikit.ML.DataFrame
{
/// <summary>
/// Implements operator for DataFrame for many types.
Expand Down
2 changes: 1 addition & 1 deletion UnitTests/TestDataManipulation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Linq;
using System.IO;
using Microsoft.ML.Runtime.Data;
using Ext.Microsoft.ML.DataManipulation;
using Scikit.ML.DataFrame;
using Microsoft.ML.Runtime.Api;
using Microsoft.ML.Trainers;
using Microsoft.ML.Transforms;
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ after_test:
- if not exist dist mkdir dist
- if not exist dist\Release mkdir dist\Release
- if not exist dist\Debug mkdir dist\Debug
- copy DataManipulation\bin\Release\netstandard2.0\Microsoft.ML.Ext.DataManipulation* dist\Release
- copy DataManipulation\bin\Debug\netstandard2.0\Microsoft.ML.Ext.DataManipulation* dist\Debug
- copy DataManipulation\bin\Release\netstandard2.0\Scikit.ML.DataFrame* dist\Release
- copy DataManipulation\bin\Debug\netstandard2.0\Scikit.ML.DataFrame* dist\Debug

artifacts:
- path: dist
Expand Down

0 comments on commit d0e5601

Please sign in to comment.