Giter Club home page Giter Club logo

datavis's Introduction

Information visualization

This project contains code and data (sources) that are used to create graphics for exercise 2 of the course 172383 - Informationsvisualisierung.

Folder structure

  • The name of the folder indicates the type of graph as "Bar, Curve, Bar and Curve".
  • Each file is structured:
 Data: Folder that contains the data used to create the plot.
 Code: folder containing the code that generates the plot.
 Readme.md: contains notes on the data and the code.                   

The libraries are used during extraction, data matching and graph generation:

library(ggridges)
library(ggplot2)
library(dplyr)
library(tidyr)
library(forcats)
library(hrbrthemes)
library(viridis)
library(plotly)
library(lubridate)

Global Theme : This theme is applied to all graphics.

Global_theme <- function(Ggplot) {
  Themed_Graph=Gplot+ theme( axis.title.y  = element_text(hjust = 0.5,size = 13,face = "bold"),
         axis.title.x = element_text(hjust = 0.5,size = 13,face = "bold"),  plot.title = element_text(hjust = 0.5, family = "Arial",face = "bold",size = 17),
                             legend.background = element_rect(fill = "white",colour = "grey",size = 2),
                             panel.grid.major = element_line(colour ="grey70" ,size = 0.1))

  return(Themed_Graph)
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

datavis's People

Contributors

kheireddine-azzez avatar

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.