# panel
**Repository Path**: scriptsboy/panel
## Basic Information
- **Project Name**: panel
- **Description**: No description available
- **Primary Language**: Go
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 1
- **Created**: 2018-04-05
- **Last Updated**: 2024-11-22
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Grid
Data analysis framework for Go.
#### Examples
Use results from a SQL query.
```go
package main
import (
"fmt"
. "github.com/brydavis/grid"
)
func main() {
query := `select distinct Id, FirstName, LastName from Persons where FirstName like 'A%'`
conn := Connect("mssql", "config.json") // Connecting to an Azure DB for example
persons := Query(conn, query)
fmt.Printf(p.Select("FirstName").Unique())
McNames := persons.Map("LastName", func(s string) string {
return fmt.Sprintf("Mc%s", s)
})
fmt.Println(McNames.Select("FirstName", "LastName"))
}
```
#### Features
1. Map
2. Filter
3. Max
4. Min
5. ...