Displaying 20 results from an estimated 20000 matches similar to: "delete categories"
2023 Jun 28
2
Plotting factors in graph panel
Hello,
I want to plot the following kind of data (percentage of respondents from a
survey) that varies by Income into many small *line* graphs in a panel of
graphs. I want to omit "No Answer" categories. I want to see how each one
of the categories (percentages), "None", " Equity", etc. varies by Income.
How can I do this? How to organize the data well and how to
2008 May 02
2
Accesing data frame members from within functions
I am writing a simple R program to execute a t-test repeatedly on data
contained in a data frame. My data looks like this:
Category Value1 Value2
1 .5 .8
1 .3 .9
. . . . . . . . .
2
2006 Feb 13
2
categories and admin/categories - different controllers and templates?
Is there some way to have these two sets of URLs use
totally different controllers and templates?
categories/list
categories/show/1
admin/categories/list
admin/categories/edit/1
admin/categories/destroy/1
admin/categories/update/1
Besides, of course, using different controller names
;). The first URL is publicly accessible, while the
second contains admin functions. Also, with the
second,
2006 Jan 06
3
Cookbook recipes eg - ordering categories in the recipe pull-down box
People,
I can order categories when looking at the categories list page but how
do I change the recipe page to list the categories in alpha order in the
recipe pull-down box?:
> <p><b>Category:</b><br>
> <select name="recipe[category_id]">
> <% @categories.each do |category| %>
> <option value="<%= category.id
2006 Mar 10
8
multiple sub categories (parent-child)
hi.
base from the cookbook example, where each categories can have many
recipes,
id like the categories to have multiple sub categories, unlimited
levels.
please show some code, as i am new to Ruby and Ruby On Rails.
thanks
--
Posted via http://www.ruby-forum.com/.
2006 Jun 17
5
Having trouble listing tiers of categories
I have categories and sub-categories in a table called "categories".
Every row has a "parent" field to note if the entry is the sub-category
of another (never goes deeper than 1 level).
So there might be something like this:
id | name | parent
1 Dog 0
2 Pug 1
3 Siamese 5
4 Shih Tzu 1
5 Cat 0
6 Wiener Dog 1
7 Persian
2006 Apr 16
11
Best way to sort categories w/ pager
Ahoy,
I made this pager,
" def list
@item_pages = Paginator.new self, Item.count, 10, @params[''page'']
@items = Item.find :all, :conditions => "category_id =
#{params[:condition]}",
:limit => @item_pages.items_per_page,
:offset => @item_pages.current.offset
@categories = Category.find_all
2006 May 03
3
Sorting by multiple categories
I have a database with a field called ''category''.
''category'' contains the categories separated by a "," i.e. 1, 2, 5
I know with something like:
@products = Product.find(:all, :condition => "category = ''1''")
I could get some results if any of the ''category'' fields only contained
"1" but
2010 Nov 29
1
selecting only corresponding categories from a confusion matrix
Dear R colleagues,
as a result of my calculations regarding the inter-observer-variability
in bronchoscopy, I get a confusion matrix like the following:
0 1 1001 1010 11
0 609 11 54 36 6
1 1 2 6 0 2
10 14 0 0 8 4
100 4 0 0 0 0
1000 23 7 12 10 5
1001 0 0 4 0 0
1010 4 0 0 3 0
1011 1 0 1 0 2
11
2009 Feb 12
2
barplot() x axes are not updated after removal of categories from the dataframe
Hi all,
I'd be grateful for your help. I am a new user struggling with a barplot
issue.
I am plotting categories (X axis) and their mean count (Y axies) with
barplot().
The first call to barplot works fine.
I remove records from the dataframe using final=[!final$varname == "some
value",]
I echo the dataframe and the records are no longer in the dataframe.
When I call plot again
2009 Jul 17
3
dot plot with several points for 2 categories
I'm trying to wean myself off the very limited capabilities of Excel and Oo.
Currently, I am trying to make a plot showing several values for 2
categories in a dot blot (see
http://www.nabble.com/file/p24538360/Picture%2B1.png Picture+1.png except
that the x axis should contain the category not a number, which was the only
way to coax Excel into displaying a plot like this). I started
2007 Feb 08
3
Get categories where forum-user posted in
I''m developing a system similar to the ForumExample (http://
wiki.rubyonrails.org/rails/pages/ForumExample), and stumbled upon the
following.
Let''s say I wanted to get all the categories a certain user posted in.
How do I get that information withouth using a custom query
through :finder_sql (and thus losing the find_in_collection ownage)?
It would also be great to see how many
2008 Apr 23
2
[Weft QDA users] Trouble opening categories and files
I?m having trouble with my Weft project. Some of my categories no longer open when I click on them. Any ideas as to why this is happening?
Also, for some reason two of my imported documents no longer open when I click on them. The content is there when I click on my categories but I can?t open the document to add new coding.
Thanks!
2009 May 11
1
[LLVMdev] Instruction categories in the backend
Dear all,
I would like to classify all target specific instructions in a set of categories. The category of each instruction would then be available in the backend.
Just to illustrate what I am trying to do, the first thing I thought about how to achieve this was to group instruction definitions in InstrInfo.td in the order of categories, and to put pseudo instructions in between to mark category
2010 Mar 26
4
Creating a vector of categories
Hi,
I have a column in a data frame looking something like:
$sex $language $count
male english 0
male english 0
female english 32
male spanish 154
female english 11
female norweigan 7
and so on.
What I want to do is to order these in to categories, for instance one
category where count>=0 & count<10 and so on..
I want my data to turn out looking something like:
male
2016 Aug 14
3
Custom desktop menu entries: weird behavior with menu categories
Hi,
For my client's desktops, I'm usually customizing the various Linux
desktops I'm installing. I'm using custom icon themes (Elementary),
custom system fonts (Droid Sans), and one of the things I also customize
are desktop menu entries.
Here's an example of what I do on a Slackware+Xfce-based desktop, so you
get the idea. Once all applications are installed, I run the
2006 May 28
3
Working with topics and categories
Hello guys,
I''m a newbie in RoR and I have a problem. My DB structure is
======================================
topics table : id(int,11)
name(varchar,255)
categories : id (int,11)
topic_id(varchar,255)
name(varchar,255)
======================================
--Models:--
class Topic < ActiveRecord::Base
has_many :categories
end
class
2006 Jan 18
2
categories/recipes & books/descriptions - has_many vs has_one => id question
People,
In the cookbook eg, categories has_many recipes but in a book eg, book
has_one description - doesn''t that mean that the id of the description
should be the same as the id of the book (instead of having it''s own
"description_id" in the book table?
Thanks,
Phil.
--
Philip Rhoades
Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275)
GPO Box 3411
Sydney
2010 Dec 27
1
Fitting mixed effects Baseline category logit models
Hello everyone,
I want to fit a baseline category logit model (with 3-4 categories) with
nested random effects.
(For example, I have clusters(i) and households within clusters (j)
resulting in the nested
random effects structure : b_i +d_j(i)). Is there a R function/package that
I can use ? Any help
will be much appreciated.
Thanks and regards,
Dhiman Bhadra
[[alternative HTML version
2024 Feb 20
1
Network issue
Hi Stephen,
Thanks very much for getting back to me. My problem is described below. Any help would be greatly appreciated. Thanks, James
Hi,
Sorry for bothering you because I know that your time is voluntary, but I would really appreciate some help. I work in a hospital in part of Ireland?s national health service, a service which was struck by a massive cyber attack a couple of years ago. Since