Questions tagged as 'tabela'

3
answers

How to format a table (data.frame) with publication quality in pdf (latex) in R?

Suppose the following table: tabela <- structure(list(Sexo = structure(c(1L, 1L, 2L, 2L), .Label = c("Homem", "Mulher"), class = "factor"), Grupo = structure(c(1L, 2L, 1L, 2L), .Label = c("A", "B"), class = "factor"), Média = c(0.26550866...
asked by 08.03.2014 / 02:13
3
answers

Insert data from a string into a table

I have a text file that I read and set it to a string texto so that it looks like this: {nome="Cassio",sexo="M",idade=19} {nome="Paula",sexo="F",idade=20} And I used the following code to add each line of that string to a position i...
asked by 03.05.2014 / 18:43
1
answer

How do I export table in R in txt or csv?

I would like to know how do I export a generated data table within R to txt or csv format?     
asked by 27.04.2015 / 17:11
1
answer

Export R data to Excel formatted

Assume a data.frame like this: tabela <- structure(list(vendedor = structure(1:4, .Label = c("A", "B", "C", "D"), class = "factor"), Total = c(3300, 440, 1020, 200)), .Names = c("vendedor", "Total"), row.names = c(NA, -4L), class =...
asked by 23.04.2014 / 02:08
0
answers

Add or Decrease columns and rows in table [closed]

I have a table where I want to add or subtract new rows and columns, through the click event on the button, I tried this way, according to the code below, but it is not working very well: Thisexampleofhowtogetbyclickingonitplusaddacolumnorrow.$...
asked by 28.11.2015 / 05:35
2
answers

Fixed-size table cell

How can I set the width of the column of two tables so that one does not have one cell larger than the other? When I try to create, the cell of the second table always gets larger than the cell of the first table, even setting <td...
asked by 09.06.2014 / 07:52
2
answers

Create HTML table using PHP

Can I create a table to separate this code? This is the only way to align the data I have if($exibe['Nome1'] != NULL) { echo '<p><b>Nome: </b>'.$exibe["Nome1"].' &nbsp;&nbsp;<b> Função : </b>'.$exibe["...
asked by 10.06.2014 / 11:10
1
answer

Add in and out and subtract

I have this code : $(document).ready(function () { var $entrada = 0, $saida = 0, $total = 0; $.each($("td[name='entrada']"), function() { $entrada += parseFloat($(this).text().replace(",", "."));...
asked by 04.05.2015 / 22:15
1
answer

Is it possible to generate a script from a table, from an SQL command?

I would like to generate a script to create a table, from a SQL command so I could build a program that would be able to clone tables. I'm using SQL Server 2008 R2 and need to implement a table cloning routine, within an application written i...
asked by 13.10.2014 / 14:42
2
answers

How to pass data from one table to another SQL

I'm having trouble passing data from one table to another: Example: Table 1 --- > Table 2 --- > delete all information from Table 1 I'm creating the project in VB.NET and using SQL     
asked by 03.03.2015 / 16:18