Is there a way (maybe using some combination of the ph functions) to edit the text of a table in-place, or delete the table and replace it with an exact copy containing updated data? The table needs very distinct and specific dimension formatting, and has arrow shapes contained in some of the cells.
I used ph_label to idebtify the label for thr table, but I wasn't able to come up with a more granular way of labeling the text of specific cells within the table.
I'm trying to make a box plot that will show columns PSS_pre and PSS_post
At the moment I have the following code:
boxplot(PSS_post~intervention)
This code shows the column PSS_post, although I can change PSS_post to PSS_pre and it will show me the column for PSS_pre. How can I make it show me both colums at the same time?
Consider plotting a list with the 2 elements.
pp_list <- list(Pre = PSS_pre~intervention, post=PSS_post~intervention)
boxplot(pp_list)
I'm trying to plot some data in Google spreadsheet:
And as you may see all of the series are in a same column and I can't use the any of the rows as headers. My plot looks like this:
I would appreciate if you could help me know how I can edit/add legend labels.
Unfortunately I don't think the graphs were intended for your data format.
The only way I've been able to work out how to add a header is by reformatting my data so I have the header at the top of my ranges.
So I suggest you split your data into separate columns so you have;
D2:D4, E2:E4, F2:F4 etc with D1, E1, and F1 as your header and then selecting "Use row 1 as your headers." From the data menu.
Alternatively, you could add labels to the series themselves. Although not ideal, it could be quicker than reformatting your data. On the data menu, click on the three dots of a data series to bring up a menu that allows you to add a label. Unfortunately this needs to be a cell so you'll have to have that header on your sheet some where.
I had the same question this year (2021), and it looks like there's support for it now. In short, you just have to double-click on the empty legend item for the series, and it'll give you a place to put text, directly in the chart.
Here's what my chart looked like (with no series titles):
If you double-click on one, you'll get a small text input area.
Type in your series name and then press enter or click outside of the input area.
Repeat this for each series, and you should be good to go.
I had the same problem because I was selecting only the data I wanted to include in the chart and not the entire table, headers and all. When you create a chart in Google Sheets and you want to use a row or column (or both) as strings that are included in the chart's labeling, you must select the entire table before choosing the Chart command from the Insert menu.
After doing so, you may need to do all or some of the following:
Switch rows/columns if your axes are not correct
Eliminate any rows/columns that you don't want represented by editing the Data Range field in the chart editor
Select Use column A as headers or Use row 1 as headers
You could also potentially use the add labels option when clicking on the 3 dots in the series section:
Double-click on the symbols in your legend, then double-click on the symbol for the series you would like to label; you should be able to directly enter your legend label now. You can do further text formatting using the chart editor on the right.
I took them to a new sheet. first selected only the X-axis and one of the columns that will appear as one. label. In this sheet, I made all the "labels" as a header of the sheet. and added them one by one as a series. and this time it. add them as a label.
obviously this is a workaround and the bug should be fixed :) hopefully.
I am showing a datatable in a shiny app with column filters at top.
The problem I have is that when I select some values in a column, they don't show up as selected when I click outside the table (although the table gets modified to show only the rows with selected values).
E.g., below is the table shown with mtcars dataset. Focus on the cyl column, I am selecting 4 and 6. I converted cyl from numeric to a 'factor` so that it will appear as a drop-down while filtering.
The selection works (I don't see any 8 in the cyl, but there is no way to tell which values of cyl have been selected. I see a similar behavior with the other columns also.
Is there any way to show the selections also in the filter box?
Thanks!
SN248
I'm fairly new to r and currently using R-studio to generate different graphs. So, I have several CSV file and I have imported one of them using "import dataset" toolbar command in upper right pane. I can see the table and all. What I like to do is to use only one column of that table to generate a bargraph. The table has this format :
User_ID, Total_logins, Entry_time
And I would like to use "Entry_time" column only to generate the graph. How can I achieve that? I did google before I ask but I found only that relates to dataset not a table.
Next question is, if I want to create stacked column chart using two columns of table how do I do that?
Thanks