All Projects → SciSharp → Pandas.net

SciSharp / Pandas.net

Pandas port for C# and F#, data analysis tool, process multi-dim array in DataFrame.

Labels

Projects that are alternatives of or similar to Pandas.net

jun
JUN - python pandas, plotly, seaborn support & dataframes manipulation over erlang
Stars: ✭ 21 (-91.89%)
Mutual labels:  pandas
Optbnb
Optimize and compare your Airbnb listing at a click of a button!
Stars: ✭ 14 (-94.59%)
Mutual labels:  pandas
epic-kitchens-55-starter-kit-action-recognition
🌱 Starter kit for working with the EPIC-KITCHENS-55 dataset for action recognition or anticipation
Stars: ✭ 40 (-84.56%)
Mutual labels:  pandas
visions
Type System for Data Analysis in Python
Stars: ✭ 136 (-47.49%)
Mutual labels:  pandas
Nyxar
A Modular platform to perform advanced back-testing in today's 24/7 crypto-currency market
Stars: ✭ 14 (-94.59%)
Mutual labels:  pandas
capbot2.0
Repository to hold code for the cap-bot varient that is being presented at the SIIC Defence Hackathon 2021.
Stars: ✭ 20 (-92.28%)
Mutual labels:  pandas
Data-Analyst-Nanodegree
Kai Sheng Teh - Udacity Data Analyst Nanodegree
Stars: ✭ 42 (-83.78%)
Mutual labels:  pandas
jalali-pandas
A pandas extension that solves all problems of Jalai/Iraninan/Shamsi dates
Stars: ✭ 29 (-88.8%)
Mutual labels:  pandas
SuperNNova
Open Source Photometric classification https://supernnova.readthedocs.io
Stars: ✭ 18 (-93.05%)
Mutual labels:  pandas
prosto
Prosto is a data processing toolkit radically changing how data is processed by heavily relying on functions and operations with functions - an alternative to map-reduce and join-groupby
Stars: ✭ 54 (-79.15%)
Mutual labels:  pandas
Python-Matematica
Explorando aspectos fundamentais da matemática com Python e Jupyter
Stars: ✭ 41 (-84.17%)
Mutual labels:  pandas
support-tickets-classification
This case study shows how to create a model for text analysis and classification and deploy it as a web service in Azure cloud in order to automatically classify support tickets. This project is a proof of concept made by Microsoft (Commercial Software Engineering team) in collaboration with Endava http://endava.com/en
Stars: ✭ 142 (-45.17%)
Mutual labels:  pandas
intro-to-python
An Introduction to Programming in Python
Stars: ✭ 57 (-77.99%)
Mutual labels:  pandas
data-analysis-using-python
Data Analysis Using Python: A Beginner’s Guide Featuring NYC Open Data
Stars: ✭ 81 (-68.73%)
Mutual labels:  pandas
pyconau2017-messy-sensor-data
[pyconau 2017 talk] Messy Sensor Data: A Programmer's Cleaning Guide
Stars: ✭ 16 (-93.82%)
Mutual labels:  pandas
python-programming-for-data-science
Content from the University of British Columbia's Master of Data Science course DSCI 511.
Stars: ✭ 29 (-88.8%)
Mutual labels:  pandas
GreyNSights
Privacy-Preserving Data Analysis using Pandas
Stars: ✭ 18 (-93.05%)
Mutual labels:  pandas
fairlens
Identify bias and measure fairness of your data
Stars: ✭ 51 (-80.31%)
Mutual labels:  pandas
AIPortfolio
Use AI to generate a optimized stock portfolio
Stars: ✭ 28 (-89.19%)
Mutual labels:  pandas
validada
Another library for defensive data analysis.
Stars: ✭ 29 (-88.8%)
Mutual labels:  pandas

Pandas.NET

Join the chat at https://gitter.im/publiclab/publiclab NuGet Build Status Build Status Build Status

Implemented APIs

1. Pandas

  • DataFrame
    • pd.DataFrame(NDArray data, IList<string> index, IList<string> columns, Type dtype)
    • pd.DataFrame<TIndex>(NDArray data, IList<TIndex> index, IList<string> columns, Type dtype)
    • pd.DataFrame(IDictionary<string, NDArray> data, IList<string> index)
    • pd.DataFrame<TIndex>(IDictionary<string, NDArray> data, IList<TIndex> index)
  • Series
    • pd.Series(NDArray data)
    • pd.Series(Array data)
    • pd.Series<T>(T data)

2. Series

  • s.iloc[0]: Select data by index

  • s.loc["index_label"]: Select data by index label

3. DataFrame

Structure

  • df.Index
  • df.Columns
  • df.Values
  • df.Shape
  • df.NDIM
  • df.Size

Method

  • df[0]: Select data by column index (returns Series)

  • df[params int[] columnIndexs]: Select data by column index (returns DataFrame)

  • df["column_label"]: Select data by column label (returns Series); accessible set accessor increase column (if the column label does not exist)

  • df[params string[] columnLabels]: Select data by column label (returns DataFrame)

  • df.Column(string columnLabel, NDArray value): Set the column and its value; create when the column does not exist

  • df.Column(int columnIndex, NDArray value): Set the column and the value of the column; when the column does not exist, an exception is reported

  • df[Slice s]: Row slice selection data

  • df.loc["index_label"]: Select data by row index label

  • df.loc["index_label", "column_label"]: Select data by row and column labels

  • df.iloc[0]: Index by row (row number) select data

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].