Code Monkey home page Code Monkey logo

deneb-templates's People

Contributors

alxdean avatar dm-p avatar mikecarlo avatar mlongoria avatar oscarvalerock avatar smashmirrorcardboardface avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

deneb-templates's Issues

Add images and samples

Having a repository for Deneb templates is awesome. The templates are helpful, but it would be nice to build this out further, more like the Vega-Lite Examples page where you can see the visual and code on a page. Maybe it would be easier even to just have a .pbix file that has all the samples in it.

Happy to help build it out, just let me know what direction you'd like to take.

deneb-template-customer-retention

Attached the customer retention deneb template as requested.
Based upon the following https://www.workout-wednesday.com/2018/05/01/week-18/

Created Calculated Columns for :

Cohort = 
VAR __Year = YEAR ( 'Customers'[First Order] )

VAR __Quarter = QUARTER( 'Customers'[First Order] )

RETURN
__Year & " - Q" & __Quarter
User Retention = 
VAR __FirstOrder = 
LOOKUPVALUE( Customers[First Order], Customers[Customer ID], Orders[Customer ID] )

VAR __OrderDate =
Orders[Order Date]
    
VAR __DateDiff =
DATEDIFF ( __FirstOrder, __OrderDate, QUARTER )

RETURN
__DateDiff

Created the following measures:

# Customers = DISTINCTCOUNT( Orders[Customer ID] )
Retention% = 
VAR __TotalCustomers =
CALCULATE(
    [# Customers],
    ALL ( Orders[User Retention] )
)

VAR __CustomersRetained =
[# Customers]

RETURN
    DIVIDE( __CustomersRetained, __TotalCustomers )

customer-retention.txt

Add Screenshots

Including screenshot examples of each type is pretty crucial here to differentiating between similar types of charts (if additional variants become added). I'd suggest adding those sooner than later...

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.