[go-nuts] Go for Data science Blogs

2017-11-06 Thread Vikram Rawat
Is there any blog where we can start to learn Data analytics in GO. has anybody started a blog in GO. where we can learn basic data manupulation with go. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop re

Re: [go-nuts] Re: get the data out of slice of structs

2017-10-26 Thread Vikram Rawat
> > Thank you very much for the reply but my problem is that there are no > slice of time.Time. This is the main reason I chose to get the data this > way by creating a slice of struct. > Can you tell me what is the best way to get this sort of data in a struct of 2 slices. my code is packag

[go-nuts] Re: get the data out of slice of structs

2017-10-26 Thread Vikram Rawat
I was able to get the Data from SQL into got but when I print fmt.Println(got[1:3]) fmt.Println(got[2:3]) fmt.Println(got[1:3]) fmt.Println(got[3:3]) it produces the following result [{2017-09-07 15:25:45.346887 + + HR} {2017-09-07 15:39:44.24207 + + DL}] [{2017-09-07 15:39:

[go-nuts] get the data out of slice of structs

2017-10-25 Thread Vikram Rawat
I have created a struct type State struct{ DLastmodified time.Time DState string } and created a slice of struct like got :=[]State{} Now I am unable to get the column data out of this slice. please help. If you want to read the full code let me know. I just wanted to know how to get t

[go-nuts] Re: Graphing libraries in golang

2017-09-29 Thread Vikram Rawat
> > thanks a lot for your reply sebestian. You certainly are a good man and I have high hopes for your library too... But before coming to Mailing list I check almost all of them and I didn't find anyone useful. The https://github.com/aclements/go-gg package is not useful at all. Because th

[go-nuts] Re: Graphing libraries in golang

2017-09-28 Thread Vikram Rawat
Thanks for your reply. Library seems promising. but when I run it , this errors out cannot find package "bitbucket.org/zombiezen/gopdf/pdf" in any of: C:\Go\src\bitbucket.org\zombiezen\gopdf\pdf (from $GOROOT) C:\Projects\Go\src\bitbucket.org\zombiezen\gopdf\pdf (from $GOPATH) when I try go

[go-nuts] Re: Graphing libraries in golang

2017-09-28 Thread Vikram Rawat
> > By graphing I actually meant *data visualization libraries* SVGO would be so hard to pass a data to and design even the basic and simple *BARCHART* other ones don't have enough documentation to understand how it works. and The reason I am trying GO is that R is slow. There is no point in

[go-nuts] Graphing libraries in golang

2017-09-27 Thread Vikram Rawat
I come from an R background and I am not able to find one single decent not too fancy but a decent graphing library that's good enough to work. Can you please suggest any library that is good enough for production level plots. Visualisation is the need of today. I don't believe that it doesn't h

[go-nuts] redirecting templates from revel

2017-09-17 Thread Vikram Rawat
I am not able to understand how can I redirect on the click of some text or button a user to a different page. I went to entire documentation but I was not able to understand it. Like revel page say. ---put this HTML in index page-- create this HTML as hello.html page

Re: [go-nuts] Re: Choosing a framework

2017-09-14 Thread Vikram Rawat
Sep 14, 2017 at 1:28 AM, Vikram Rawat > wrote: >> >> And there is another project called VECTY. But I mailed them and >> they told me it's not documented yet. and it could have bugs. >> > > Vecty (https://github.com/gopherjs/vecty) uses Gopherjs and runs in the &g

[go-nuts] Re: Choosing a framework

2017-09-13 Thread Vikram Rawat
> > I am trying to learn golang too. and I have never ever build a website. > All the experience that I have is by building SHINY R dashboards.I tried > almost all the framework. But I liked REVEL. Because speed and concurrency > is not my concern I just want to write simple database web applic

[go-nuts] Re: how to get the SQL Dataframe into GOTA

2017-09-09 Thread Vikram Rawat
Please if anybody knows how to do it. Even by writing a big function I am ready to do it. Can anybody please help me?? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an emai

[go-nuts] how to get the SQL Dataframe into GOTA

2017-09-09 Thread Vikram Rawat
can anybody help me out with it. I want to get this data into GOTA Dataframe. I just can't figure out how to get the data from SQL into GOTA ==

[go-nuts] MSSQL DBMS

2017-06-15 Thread Vikram Rawat
I have read like every blog about database but I am not able to understand how to connect GOLANG to 1. SQL Server 2. MS Access can anybody please tell me how to query these databases please -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To un

[go-nuts] Go For Data analysts

2017-06-01 Thread Vikram Rawat
Does anybody actually uses GO for data Analysis... Can it be used for Data analysis -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googl

[go-nuts] Re: Help with Dataframes

2017-05-29 Thread Vikram Rawat
Thank You Thank You Thank You Thank You Thank You Thank You Thank You Thank You Thank You Thank You Very very very MUCH My brain was about to bleed to death... I am not a programmer but somebody suggested me GOLANG and I started it just a MONTH Ago. It's quite different and hard to grasp But if

[go-nuts] Help with Dataframes

2017-05-29 Thread Vikram Rawat
Can anybody please tell me how to write GOTA Golang dataframes on a csv... It's been 2 days I am trying to find a way to write dataframes onto a csv. can anybody please help me understand what does this IO.writer means and how to use it... I have given up understanding it... Please any help wi

Re: [go-nuts] Problem with HINDI NAMES

2017-05-25 Thread Vikram Rawat
On May 25, 2017, at 7:47 AM, Bakul Shah wrote: > > As per the language ref technically this is not a bug as a vowel sign (U+094B > 'ो') is a not Unicode letter but practically it is since you the majority > of words in Indic languages need them. > > On May 24, 2017, at 1

[go-nuts] Problem with HINDI NAMES

2017-05-25 Thread Vikram Rawat
package main import (p"fmt" ) func main(){ सोम(1,1,1,21323,2,2,32,1,) } func सोम (num ...int){ var total int for _, r:= range num{ total = total + r } p.Println("तुन्हारा जोड़ है ",total) } DOESN"T WORK But THIS DO