Skip to content

Commit

Permalink
Nuget Version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bahrudin Hrnjica committed Dec 1, 2019
1 parent 8981dbe commit 9c59725
Show file tree
Hide file tree
Showing 13 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Daany.DataFrame.Ext.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Daany.DataFrame.Ext</id>
<version>0.5.7</version>
<version>0.6.0</version>
<authors>Bahrudin Hrnjica, bhrnjica</authors>
<owners>bhrnjica</owners>
<icon>daanyIcon.png</icon>
Expand Down
2 changes: 1 addition & 1 deletion Daany.DataFrame.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Daany.DataFrame</id>
<version>0.5.7</version>
<version>0.6.0</version>
<authors>Bahrudin Hrnjica, bhrnjica</authors>
<owners>bhrnjica</owners>
<icon>daanyIcon.png</icon>
Expand Down
2 changes: 1 addition & 1 deletion Daany.Stat.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Daany.Stat</id>
<version>0.5.7</version>
<version>0.6.0</version>
<authors>Bahrudin Hrnjica, bhrnjica</authors>
<owners>bhrnjica</owners>
<icon>daanyIcon.png</icon>
Expand Down
Binary file modified lib/Daany.DataFrame.dll
Binary file not shown.
Binary file modified lib/Daany.Stat.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed nuget/Daany.Stat.0.5.7.nupkg
Binary file not shown.
Binary file added nuget/Daany.Stat.0.6.0.nupkg
Binary file not shown.
1 change: 1 addition & 0 deletions src/daany.df/dataframe/DataFrame.IO.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ public static DataFrame FromWeb(string urlPath, char sep = ',', string[] names =
var strPath = $"web_csv_{DateTime.Now.Ticks}";
using (System.Net.WebClient fileDownloader = new System.Net.WebClient())
{

fileDownloader.DownloadFile(urlPath, strPath);
}

Expand Down
2 changes: 1 addition & 1 deletion src/daany.df/dataframe/DataFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1653,7 +1653,7 @@ public DataFrame Merge(DataFrame df2, string[] leftOn, string[] rightOn, JoinTyp

//fill right table
int startR = j * rightCCount;
int cc = 0;
//
for (int r = startR; r < startR + rightCCount; r++)
lst.Add(df2._values[r]);
}
Expand Down
1 change: 0 additions & 1 deletion src/daany.df/dataframe/GroupDataFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,6 @@ public DataFrame Aggregate(IDictionary<string, Aggregation> agg)
/// <returns></returns>
public DataFrame GCount()
{
DataFrame df = null;
var cols = new string[] { GroupedColumn, "count" };
var lst = new List<object>();
foreach (var gr in Group.OrderByDescending(x => x.Value.RowCount()))
Expand Down
2 changes: 1 addition & 1 deletion src/daany.stat/GradientDescent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Daany.Optimizers
{
public class Optimization
public static class Optimization
{
public static double[] GradientDescent(List<double[]> X, List<double> Y, double lr, int it)
{
Expand Down

0 comments on commit 9c59725

Please sign in to comment.