Zhenyong Zhu

Results 38 comments of Zhenyong Zhu

I would love to see this feature coming so that our internal F# and Python notebooks can be viewed and shared easily on VSTS.

Please provide a more detailed repro. Thanks.

Post my SO answer here. Does this solve your problem? To use `zip`, both frames will match column by column and add two series together. In your case, `divFrame` has...

That's fair. A different solution. `addFunc` is to deal with missing values in `s2` ```fsharp let addFunc (s1:Series) s2 = s1.Zip(s2, JoinKind.Left, Lookup.Exact) |> Series.mapValues(fun (x, y) -> x.ValueOrDefault +...

Sorry for proposing the second solution that did not solve the problem. I agree that `zip` is confusing to use. Let me take some time to look into the design...

Thanks for reporting this. This is indeed a bug. Either we shall limit the number of new row keys, similar to `indexColsWith`, https://github.com/fslaborg/Deedle/blob/master/src/Deedle/FrameModule.fs#L765 Or we shall convert the expanded rows...

Thanks for pointing it out. This is definitely wrong. Will fix it.

I updated Deedle.fsx in a commit before the release of 2.0.0-beta01 to reference dll in net45 as netstandard is not supported in FSI yet. https://github.com/fslaborg/Deedle/commit/adff0f02978f64da6f9facd8906c76969dbd5014

I see what you meant. I updated only the path for nuget package, not the bin folder. I've just made the change for bin folder. https://github.com/fslaborg/Deedle/commit/5cae9aef82c30bd7b01cd7b78a380ee570dfd6db

@tpetricek I'd like to revisit this issue. Pandas library comes with built-in functions such as df.cov to calculate covariance matrix. Pandas has dependency on numpy. Shall we add dependency of...