We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to fill zero-padding. It is not easy to update all values. Could you help it? plz... (Before) df:
(After) df:
thank you :)
The text was updated successfully, but these errors were encountered:
I try to use series.Map().
sel2 := sel1.Col("col1") zeroFill := func(e series.Element) series.Element { result := e.Copy() zeroResult := fmt.Sprintf("%06s", result.String()) result.Set(zeroResult) return series.Element(result) } received := sel2.Map(zeroFill)
But I got other problems.. how to change series type. When I update values, it was removed 0. Because it is still int type...
Sorry, something went wrong.
I found a solution!! When I got data, I can handle data type with options.
Like this: cs = dataframe.ReadHTML(strings.NewReader(htmlUTF8), dataframe.DetectTypes(false), dataframe.DefaultType(series.String))[0]
cs = dataframe.ReadHTML(strings.NewReader(htmlUTF8), dataframe.DetectTypes(false), dataframe.DefaultType(series.String))[0]
But I'm still curious how to change series type.
Hi coldmu, it seems to be an unsolved point.
chrmang
No branches or pull requests
I want to fill zero-padding.
It is not easy to update all values.
Could you help it? plz...
(Before) df:
(After) df:
thank you :)
The text was updated successfully, but these errors were encountered: