Questions tagged [tabular]

Tabular indicates a display format that mimics a table entity.

A tabular format is something which mimics the appearance of a table entity.
All the data are shown in rows each of which is made of columns (or fields).

1367 questions
13
votes
1 answer

Latex Formulas or symbols in table cells using knitr and kableExtra in R-Markdown,

Thanks to jaySf I was able to create a pdf file containing beautiful tables with footnotes showing formulas and symbols with R Markdown, Latex, knitr and kableExtra (below his example): --- title: "Untitled" output: pdf_document --- ```{r…
Benjamin Telkamp
  • 1,451
  • 2
  • 17
  • 31
13
votes
1 answer

How to set the fixed width of columns?

Hello everyone I am creating a table on latex my code looks like this: \begin{table}[H] \centering \caption{caption} \label{my-label} \begin{tabular}{lll} \hline \multicolumn{3}{|c|}{\cellcolor[HTML]{34CDF9}{\color[HTML]{000000} Matriz confusión …
neo33
  • 1,809
  • 5
  • 18
  • 41
13
votes
5 answers

Make a table showing the 10 largest values of a variable in R?

I want to make a simple table that showcases the largest 10 values for a given variable in my dataset, as well as 4 other variables for each observation, so basically a small subset of my data. It would look something like this: Score District Age…
nikUoM
  • 639
  • 1
  • 8
  • 18
13
votes
3 answers

AngularJS dynamic table with unknown number of columns

I'm new to Angular and I need some start point for my project. How can I create new table from ajax data by mouse click on the background? I know that ajax data has unknown number of columns and can be different from time to time. For example: the…
Max Tkachenko
  • 792
  • 1
  • 12
  • 30
12
votes
4 answers

Format output in a table, C++

How can I output data to the console in a table in C++? There's a question for this in C#, but I need it in C++. This, except in C++: How To: Best way to draw table in console app (C#)
JT White
  • 517
  • 4
  • 9
  • 21
11
votes
4 answers

Styling dl and dt with CSS to mimic table-like presentation

I have the following issues using CSS to style some dl and dt elements. I prefer always to use very basic CSS that is compatible with IE6/IE7 and modern browsers. I am trying to get an effect, that to me should be rather simple to achieve. Here's…
user17753
  • 3,083
  • 9
  • 35
  • 73
11
votes
3 answers

Printing tabular data in Python

What's the best way to print tabular data in Python? Say the data is in a 2D list and I want to create a smart looking table. What I actually have is a list of dictionaries and I want to print an intersection depending on values in the dictionaries.…
Makis
  • 12,468
  • 10
  • 62
  • 71
11
votes
1 answer

Aligning column in tabularx

I want to align the last column properly. There is extra space towards the end. Please let me know how to do that. Thanks. \documentclass[11pt]{article} \usepackage{setspace} %double spacing and spacing in tables …
Sumit
  • 2,242
  • 4
  • 25
  • 43
11
votes
4 answers

Changing SQL Server DB from tabular to multidimensional

I have following problem: When I try to deploy my SSAS project (with cube, dimensions and all that jazz) to sql-server, it throws error saying that You cannot deploy the model because the DB deployment server is not running in multidimensional…
11
votes
2 answers

Freeze table rows in emacs org mode

Is there a way to freeze rows in org mode, similar to the functionality in i.e. Excel? I'm trying to freeze a table header so that when I move down the page, the header still shows?
Kevin Heffernan
  • 246
  • 2
  • 6
11
votes
2 answers

How to do multi-column header (multi layer header) in SlickGrid?

I am using SlickGrid (https://github.com/mleibman/SlickGrid) to display an editable table, like this one, the one on the right: But seems currently SlickGrid does not support this, how can this be done?
CGP
  • 303
  • 3
  • 8
10
votes
6 answers

Divs vs tables for tabular data

Yes, another divs vs tables questions... I read all over the place that "try to use divs instead of tables", but I have an application that displays data that is tabular, basically my entire web application displays tables (with different columns…
WebGUY
  • 101
  • 1
  • 3
10
votes
6 answers

How do I align like this with VIM's Tabular Plugin?

This is my code: john,betty,wally,beth walter,george,thomas,john herbert,bob,petty,mick` Does anyone know how to align it to this with VIM's Tabular Plugin: john, betty, wally, beth walter, george, thomas, john herbert, bob, petty, …
Reman
  • 7,931
  • 11
  • 55
  • 97
10
votes
2 answers

What is the best way to show data in a table in Tkinter?

I have written a program which takes data from a text file and displays it in a table style format. Data from text file: Jim,0.33 Dave,0.67 James,0.67 Eden,0.5 Formatted using the program: Position | Name …
Neos Nokia
  • 125
  • 1
  • 2
  • 11
10
votes
5 answers

Semantic markup for complex or nested HTML tables?

I want to know the best way to mark up tabular data on a web page when data rows contain complex data that can't fit within a single table row. Here's a concrete example. The first line has a list of extra information attached to it about arms and…
Bennett McElwee
  • 24,740
  • 6
  • 54
  • 63
1 2
3
91 92