I have created a little recommendation application using Core ML and MLrecommender. Can I select multiple item column to prediction?
Search results for
column
2,070 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hello,I would like to add a custom column in the Finder and show my custom properties of a file or folder. I know we can set our own custom properties (aka extended properties) using xattr. However currently there is no way I can show these values in Finder. I could use Tags or Comments columns but they are not ideal. On Windows we could show custom properties of a file using shell extension and other stuff. Is this possible in Mac OS?Thanks,-Anish
Hi,I started with the beta at V4. I realized right there that the column view is missing from my Files app. I hoped it will work itself out on V5 and it didn't. Sane hope for the new V6. Again no avail. Don't see how to attach a screenshot but it's dead simple: There's just the single symbol up top in the Flies App and not three. Flipping the display doesn't change anything either...- Anyone else with that issue?- Any hidden setting that I am missing out?Specs: IPad Pro 11 with iPadOS beta6Cheers
I've encountered that bug where the font picker in Interface Builder is stuck on one font collection (in this case monospace). When I resize the window, I see the Collection collumn while resizing the window; but as soon as I let to, the Family column slides to the left and obscures it. Does anybody know of a workaround? Really want to be able to select other fonts.
I have a macOS app made with SwiftUI where I want to show a list of data in a tabular fashion. SwiftUI Table seems to be the only built-in component that can do this. I would like to let the user size the columns and have their widths restored when the app is relaunched. I can find no documentation on how to do this and it does not seem to be saved and restored automatically. I can find no way to listen for changes in the column widths when the user resizes and no way to set the size from code. For a macOS app it seems that the only way to set the width of a column is to use e.g. .width(min: 200, max: 200). This in effect disables resizing of the column. It seems that idealSize is totally ignored on macOS. Any suggestions?
Is there a built-in functionality to retrieve the current column and row during a print operation when using the built-in pagination mechanism of NSView? All I could find in the general printing documentation and for the NSPrintOperation and NSPrintInfo classes is the NSPrintOperation.currentOperation.currentPage property. I'm basically attempting to access the 'address' (page number or row/column) of pages bordering to the left/right/above/below the current page to enable assembly constructions being shown to the user on printouts spanning multiple pages. Hope this makes sense. Thanks, Jay
I am seeing a difference in behaviour for column rendering in both UIWebView and Safari depending on the iOS version. See this link for example:https://mobile.content.hmhco.com/HMHGMA/tmp/OPS/sample.htmlWith the link above, the HTML body specifies the following for heights:min-height:924pxmax-height:1000pxOpening this link in Safari on a device with iOS less that 10.3, the height of columns (as shown in Box Model using Safari Develop tab on Mac) is 924.In iOS 10.3 (beta 4): the height of the columns is 1000.This means there is different content on the pages between the two iOS versions (i.e. more content per page on iOS 10.3). As you can see by viewing the sample on the two iOS', in any iOS < 10.3 the first column ends with civilisation to develop in Egypt whereas on iOS 10.3 there is extra text at the end of the column.Additional info:- The same differences as reported above between the iOS' also occur with Chrome browser on device (i.e. columns rendered differ
Have a working table but would like to build it using dynamic columns, but no examples exist and the Path-ing may be an issue as it refers to specific attributes, which are dynamic.
I custome mainpage of application, and it's have more columns. So how to I can do it?It's look like photo in here link: http://techcrunch.com/2014/10/09/facebook-photo-collage/Thank you!
Hi, How can I customize the Back Button in Column 2 Content in SplitView, like changing its color, label, icon ? Also is it possible to keep it visible even when Column 1 is shown and make it work like toggling showing and hiding Column 1 ? Kindest Regards
I'm trying to implement a multi column layout for a hex editor using TextKit2. I'm using the sample App named LayoutTextWithTextKit2 as my starting point, but I'm struggling to understand what the best approach could be to implement it. My doubts are: Is it a good idea to use a text element for a single line in a single column? I'm basing my text element on NSTextParagraph. Following my previous question, is there any way to layout these text elements horizontally in a single line, instead of having the layout engine automatically lay them out in a vertical stack? Where is the correct location where I can override the positioning for each text element manually if I wanted to not base my elements in NSTextParagraph? Would this be a good idea? I apologize for the many questions, but my basic problem is that it's not clear to me if I'm missing something that's obvious, and there's a simple way to address my troubles. Any guidance towards that goal, even beyond my questions above, will be apprec
HelloI have a problem when I use text-shadow and coumnt-count style on a span element,When I set text-shadow' blur value greater then 0 and column-count greater then 1, then you will see the second column ( also the third column) will bring down some distance, but it's not happen on Windows Chrome, Mac Chrome, etc, It's looks like only safari has this bug.Following is a online demo of this bug:link: http://jsrun.net/arfKp/editI'm looking forword for any response of this.ThanksYulong
I am developing quiz app & I want to use plist file as a database.Numbers spreadsheet has 6 columns as follows.Question | Option 1 | Option 2 | Option 3 | Option 4 | AnswerAnswer column will contain referance to actual answer from 4 options.Now how can I convert Numbers spreadsheet with 1,000 rows to single plist file?Any Help?
Big Sur Beta 2: In Catalina (and every previous version of both iTunes and Music) if you clicked on the column headers (Title, Time, Artist, etc.) the files would be sorted by that category. That no longer happens. Why?
I am currently using a List and HStack to hack together a basic multi column Tableview. Fortunately I don't need more advanced features such as column resizing or moving - but scrolling horizontally has proved to be an issue. SwiftUI Lists normally won't scroll sideways so I placed mine in a horizontal scrollbar which does work but only when scrolled from the list 'header' which is separate from the list. Like so: ScrollView(.horizontal){ VStack{ Rectangle() // 'header' - scroll sideways from here List() // mousing here won't scroll sideways } } It 'works', but only just. I was hoping that the new LazyVGrid would work better and enable us to create at least a basic multi column tableview but it doesn't seem possible. Why doesn't Apple give the multi column tableview some love? It's a pretty basic control for many apps on macOS, but seems to have been completely ignored.