Coder Social home page Coder Social logo

Comments (2)

kniren avatar kniren commented on June 9, 2024

Hey @MaxHalford, thank you very much for your interest and your nice words. On the README you can find a use case for transforming a DataFrame into something that can be used with Gonum.

Now according to your feature request, you would want to transform a DataFrame into a [][]float64. I guess the first question is, do you need it to be row wise or column wise? If it's the latter you could loop through the columns on the DataFrame, which will return a Series you can then just call the Series.Float method there to get a slice of slices of floats.

What are your thoughts on this?

from gota.

MaxHalford avatar MaxHalford commented on June 9, 2024

Yes in the end I did a loop.

func dataFrameToFloat64(df dataframe.DataFrame) [][]float64 {
	var X = make([][]float64, df.Ncol())
	for i, col := range df.Names() {
		X[i] = df.Col(col).Float()
	}
	return X
}

I guess there isn't much point putting this in the gota API because it's so easy to implement. Thanks a lot for your answer!

from gota.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.