Documentation ¶
Overview ¶
Package faker can be used to generate DataFrames filled with fake data. The list of functions can be found here: https://godoc.org/github.com/brianvoe/gofakeit .
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var FuncMap = map[string]interface{}{}/* 125 elements not displayed */
FuncMap contains functions from https://godoc.org/github.com/brianvoe/gofakeit .
Functions ¶
func NewDataFrame ¶
NewDataFrame will create a new DataFrame with fake data.
Example:
import "golang.org/x/exp/rand" import "time" src := rand.NewSource(uint64(time.Now().UTC().UnixNano())) df := faker.NewDataFrame(5, src, faker.S("name", 0, "FirstName"), faker.S("email", 0, "Email"))
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.